| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef SelectionState_h |
| 6 #define SelectionState_h |
| 7 |
| 8 namespace blink { |
| 9 |
| 10 enum SelectionState { |
| 11 SelectionNone, // The object is not selected. |
| 12 SelectionStart, // The object either contains the start of a selection run o
r is the start of a run. |
| 13 SelectionInside, // The object is fully encompassed by a selection run. |
| 14 SelectionEnd, // The object either contains the end of a selection run or is
the end of a run. |
| 15 SelectionBoth // The object contains an entire run or is the sole selected o
bject in that run. |
| 16 }; |
| 17 |
| 18 } // namespace blink |
| 19 |
| 20 #endif // SelectionState_h |
| OLD | NEW |