| Index: third_party/WebKit/Source/core/editing/FindOptions.h
|
| diff --git a/third_party/WebKit/Source/core/editing/FindOptions.h b/third_party/WebKit/Source/core/editing/FindOptions.h
|
| index 89a545f83e28dca75f60e7f33fbc567e0ca730dd..7b2df209381087d8d47882c8e9c11545c56493b3 100644
|
| --- a/third_party/WebKit/Source/core/editing/FindOptions.h
|
| +++ b/third_party/WebKit/Source/core/editing/FindOptions.h
|
| @@ -31,8 +31,9 @@ namespace blink {
|
| enum FindOptionFlag {
|
| CaseInsensitive = 1 << 0,
|
| AtWordStarts = 1 << 1,
|
| - // When combined with AtWordStarts, accepts a match in the middle of a word if the match begins with
|
| - // an uppercase letter followed by a lowercase or non-letter. Accepts several other intra-word matches.
|
| + // When combined with AtWordStarts, accepts a match in the middle of a word if
|
| + // the match begins with an uppercase letter followed by a lowercase or
|
| + // non-letter. Accepts several other intra-word matches.
|
| TreatMedialCapitalAsWordStart = 1 << 2,
|
| Backwards = 1 << 3,
|
| WrapAround = 1 << 4,
|
|
|