Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(219)

Side by Side Diff: third_party/WebKit/Source/core/editing/FindOptions.h

Issue 2399663003: Reflow comments in //third_party/WebKit/Source/core/editing (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2010 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 13 matching lines...) Expand all
24 */ 24 */
25 25
26 #ifndef FindOptions_h 26 #ifndef FindOptions_h
27 #define FindOptions_h 27 #define FindOptions_h
28 28
29 namespace blink { 29 namespace blink {
30 30
31 enum FindOptionFlag { 31 enum FindOptionFlag {
32 CaseInsensitive = 1 << 0, 32 CaseInsensitive = 1 << 0,
33 AtWordStarts = 1 << 1, 33 AtWordStarts = 1 << 1,
34 // When combined with AtWordStarts, accepts a match in the middle of a word if the match begins with 34 // When combined with AtWordStarts, accepts a match in the middle of a word if
35 // an uppercase letter followed by a lowercase or non-letter. Accepts several other intra-word matches. 35 // the match begins with an uppercase letter followed by a lowercase or
36 // non-letter. Accepts several other intra-word matches.
36 TreatMedialCapitalAsWordStart = 1 << 2, 37 TreatMedialCapitalAsWordStart = 1 << 2,
37 Backwards = 1 << 3, 38 Backwards = 1 << 3,
38 WrapAround = 1 << 4, 39 WrapAround = 1 << 4,
39 StartInSelection = 1 << 5, 40 StartInSelection = 1 << 5,
40 WholeWord = 1 << 6, // WholeWord should imply AtWordStarts 41 WholeWord = 1 << 6, // WholeWord should imply AtWordStarts
41 // TODO(yosin) Once find UI works on flat tree and it doesn't use 42 // TODO(yosin) Once find UI works on flat tree and it doesn't use
42 // |rangeOfString()|, we should get rid of |FindAPICall| enum member. 43 // |rangeOfString()|, we should get rid of |FindAPICall| enum member.
43 FindAPICall = 1 << 7, // Used for Window.find or execCommand('find') 44 FindAPICall = 1 << 7, // Used for Window.find or execCommand('find')
44 }; 45 };
45 46
46 typedef unsigned FindOptions; 47 typedef unsigned FindOptions;
47 48
48 } // namespace blink 49 } // namespace blink
49 50
50 #endif // FindOptions_h 51 #endif // FindOptions_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/editing/EphemeralRange.h ('k') | third_party/WebKit/Source/core/editing/FrameCaret.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698