Index: Source/core/editing/FindOptions.h |
diff --git a/Source/core/editing/FindOptions.h b/Source/core/editing/FindOptions.h |
index 0fa69dc045507f6296e61582800fe389c5bed3dd..38897faa49ab30fbc8342f122025a2efc8a45517 100644 |
--- a/Source/core/editing/FindOptions.h |
+++ b/Source/core/editing/FindOptions.h |
@@ -37,7 +37,10 @@ enum FindOptionFlag { |
Backwards = 1 << 3, |
WrapAround = 1 << 4, |
StartInSelection = 1 << 5, |
- WholeWord = 1 << 6 // WholeWord should imply AtWordStarts |
+ WholeWord = 1 << 6, // WholeWord should imply AtWordStarts |
+ // TODO(yosin) Once find UI works on composed tree and it doesn't use |
+ // |rangeOfString()|, we should get rid of |FindAPICall| enum member. |
+ FindAPICall = 1 << 7, // Used for Window.find or execCommand('find') |
}; |
typedef unsigned FindOptions; |