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

Unified Diff: third_party/WebKit/Source/core/editing/SelectionAdjuster.h

Issue 1675163002: Rename ComposedTree to FlatTree (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: wip Created 4 years, 10 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
Index: third_party/WebKit/Source/core/editing/SelectionAdjuster.h
diff --git a/third_party/WebKit/Source/core/editing/SelectionAdjuster.h b/third_party/WebKit/Source/core/editing/SelectionAdjuster.h
index 37769a28bd3f07776f25b1cd82855f283b914e8c..c589eeb654ba37f0367dd8d708aea4a0a62bbf11 100644
--- a/third_party/WebKit/Source/core/editing/SelectionAdjuster.h
+++ b/third_party/WebKit/Source/core/editing/SelectionAdjuster.h
@@ -16,10 +16,10 @@ namespace blink {
class CORE_EXPORT SelectionAdjuster final {
STATIC_ONLY(SelectionAdjuster);
public:
- static void adjustSelectionInComposedTree(VisibleSelectionInComposedTree*, const VisibleSelection&);
- static void adjustSelectionInDOMTree(VisibleSelection*, const VisibleSelectionInComposedTree&);
+ static void adjustSelectionInFlatTree(VisibleSelectionInFlatTree*, const VisibleSelection&);
+ static void adjustSelectionInDOMTree(VisibleSelection*, const VisibleSelectionInFlatTree&);
static void adjustSelectionToAvoidCrossingShadowBoundaries(VisibleSelection*);
- static void adjustSelectionToAvoidCrossingShadowBoundaries(VisibleSelectionInComposedTree*);
+ static void adjustSelectionToAvoidCrossingShadowBoundaries(VisibleSelectionInFlatTree*);
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698