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

Unified Diff: Source/core/editing/iterators/TextIteratorFlags.h

Issue 1213213004: Introduce use counters for shadow DOM handling in plainText() (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 2015-07-03T14:40:27 Rebase Created 5 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/editing/iterators/TextIterator.cpp ('k') | Source/core/frame/UseCounter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/editing/iterators/TextIteratorFlags.h
diff --git a/Source/core/editing/iterators/TextIteratorFlags.h b/Source/core/editing/iterators/TextIteratorFlags.h
index 6f315ecadd3e0bbcd30f6904368d4c3f470a8f6e..bb42dbb933f7767fbd1edff55c3871adf5a7e4d3 100644
--- a/Source/core/editing/iterators/TextIteratorFlags.h
+++ b/Source/core/editing/iterators/TextIteratorFlags.h
@@ -38,7 +38,10 @@ enum TextIteratorBehavior {
TextIteratorEmitsImageAltText = 1 << 5,
TextIteratorEntersOpenShadowRoots = 1 << 6,
TextIteratorEmitsObjectReplacementCharacter = 1 << 7,
- TextIteratorDoesNotBreakAtReplacedElement = 1 << 8
+ TextIteratorDoesNotBreakAtReplacedElement = 1 << 8,
+ TextIteratorForInnerText = 1 << 9,
+ TextIteratorForSelectionToString = 1 << 10,
+ TextIteratorForWindowFind = 1 << 11,
};
typedef unsigned TextIteratorBehaviorFlags;
« no previous file with comments | « Source/core/editing/iterators/TextIterator.cpp ('k') | Source/core/frame/UseCounter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698