flutter_flutter/engine/core/editing/PositionWithAffinity.cpp
Elliott Sprehn 42d362ff6b Remove tons of OILPAN.
This removes ::trace, traceAfterDispatch and finalizeGarbageCollectedObject.

R=abarth@chromium.org

Review URL: https://codereview.chromium.org/723253004
2014-11-13 16:56:13 -08:00

26 lines
554 B
C++

// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file./*
#include "config.h"
#include "core/editing/PositionWithAffinity.h"
namespace blink {
PositionWithAffinity::PositionWithAffinity(const Position& position, EAffinity affinity)
: m_position(position)
, m_affinity(affinity)
{
}
PositionWithAffinity::PositionWithAffinity()
: m_affinity(DOWNSTREAM)
{
}
PositionWithAffinity::~PositionWithAffinity()
{
}
} // namespace blink