Index: Source/core/editing/FindOptions.h |
diff --git a/Source/core/editing/FindOptions.h b/Source/core/editing/FindOptions.h |
index 8d524a3314ffe706fcac2329c97fdc9be5d85103..0fa69dc045507f6296e61582800fe389c5bed3dd 100644 |
--- a/Source/core/editing/FindOptions.h |
+++ b/Source/core/editing/FindOptions.h |
@@ -36,7 +36,8 @@ enum FindOptionFlag { |
TreatMedialCapitalAsWordStart = 1 << 2, |
Backwards = 1 << 3, |
WrapAround = 1 << 4, |
- StartInSelection = 1 << 5 |
+ StartInSelection = 1 << 5, |
+ WholeWord = 1 << 6 // WholeWord should imply AtWordStarts |
}; |
typedef unsigned FindOptions; |