| Index: third_party/WebKit/Source/core/layout/api/SelectionState.h
|
| diff --git a/third_party/WebKit/Source/core/layout/api/SelectionState.h b/third_party/WebKit/Source/core/layout/api/SelectionState.h
|
| index 144cdb25bad6195685c08f02c6924a3e9d5175fd..728e4c540caeb0510a44baa014d9ce066b59ec39 100644
|
| --- a/third_party/WebKit/Source/core/layout/api/SelectionState.h
|
| +++ b/third_party/WebKit/Source/core/layout/api/SelectionState.h
|
| @@ -8,11 +8,19 @@
|
| namespace blink {
|
|
|
| enum SelectionState {
|
| - SelectionNone, // The object is not selected.
|
| - SelectionStart, // The object either contains the start of a selection run or is the start of a run.
|
| - SelectionInside, // The object is fully encompassed by a selection run.
|
| - SelectionEnd, // The object either contains the end of a selection run or is the end of a run.
|
| - SelectionBoth // The object contains an entire run or is the sole selected object in that run.
|
| + // The object is not selected.
|
| + SelectionNone,
|
| + // The object either contains the start of a selection run or is the start of
|
| + // a run.
|
| + SelectionStart,
|
| + // The object is fully encompassed by a selection run.
|
| + SelectionInside,
|
| + // The object either contains the end of a selection run or is the end of a
|
| + // run.
|
| + SelectionEnd,
|
| + // The object contains an entire run or is the sole selected object in that
|
| + // run.
|
| + SelectionBoth
|
| };
|
|
|
| } // namespace blink
|
|
|