| Index: Source/core/editing/PositionWithAffinity.h
|
| diff --git a/Source/core/editing/PositionWithAffinity.h b/Source/core/editing/PositionWithAffinity.h
|
| index 38fb1f641e77ca045b928c7e8bcf77057af2dbc2..9675a1317c9c34d600311b8efbfd2c488f9ca9e4 100644
|
| --- a/Source/core/editing/PositionWithAffinity.h
|
| +++ b/Source/core/editing/PositionWithAffinity.h
|
| @@ -24,6 +24,12 @@ public:
|
| EAffinity affinity() const { return m_affinity; }
|
| const PositionType& position() const { return m_position; }
|
|
|
| + bool operator==(const PositionWithAffinityTemplate& other) const;
|
| + bool operator!=(const PositionWithAffinityTemplate& other) const { return !operator==(other); }
|
| +
|
| + bool isNotNull() const { return m_position.isNotNull(); }
|
| + bool isNull() const { return m_position.isNull(); }
|
| +
|
| DEFINE_INLINE_TRACE()
|
| {
|
| visitor->trace(m_position);
|
|
|