| Index: Source/core/editing/FrameSelection.h
|
| diff --git a/Source/core/editing/FrameSelection.h b/Source/core/editing/FrameSelection.h
|
| index e1be1a071363171c27448f864083fe8b2e7b6a0e..c060af9f951b71ef447c36cbd57d3bdf84a6f98c 100644
|
| --- a/Source/core/editing/FrameSelection.h
|
| +++ b/Source/core/editing/FrameSelection.h
|
| @@ -68,8 +68,7 @@ public:
|
| virtual ~FrameSelection();
|
|
|
| enum EAlteration { AlterationMove, AlterationExtend };
|
| - enum CursorAlignOnScroll { AlignCursorOnScrollIfNeeded,
|
| - AlignCursorOnScrollAlways };
|
| + enum CursorAlignOnScroll { AlignCursorOnScrollIfNeeded, AlignCursorOnScrollAlways };
|
| enum SetSelectionOption {
|
| // 1 << 0 is reserved for EUserTriggered
|
| CloseTyping = 1 << 1,
|
| @@ -239,7 +238,8 @@ public:
|
| private:
|
| explicit FrameSelection(LocalFrame*);
|
|
|
| - enum EPositionType { START, END, BASE, EXTENT };
|
| + // TODO(yosin) We should use capitalized name for |EPositionType|.
|
| + enum EPositionType { START, END, BASE, EXTENT }; // NOLINT
|
|
|
| template <typename Strategy>
|
| bool containsAlgorithm(const LayoutPoint&);
|
|
|