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

Unified Diff: third_party/WebKit/Source/core/editing/commands/SplitTextNodeCommandTest.cpp

Issue 2907643004: [DMC #22] Move DocumentMarker::MatchStatus enum to TextMatchMarker (Closed)
Patch Set: Rebase Created 3 years, 7 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/commands/SplitTextNodeCommandTest.cpp
diff --git a/third_party/WebKit/Source/core/editing/commands/SplitTextNodeCommandTest.cpp b/third_party/WebKit/Source/core/editing/commands/SplitTextNodeCommandTest.cpp
index 7b79e69e44ee84d0e9d17d8e1e92f151b9a837dd..0c810cc46d5ebf0246fd3fb7c61aecd185de97bb 100644
--- a/third_party/WebKit/Source/core/editing/commands/SplitTextNodeCommandTest.cpp
+++ b/third_party/WebKit/Source/core/editing/commands/SplitTextNodeCommandTest.cpp
@@ -20,15 +20,15 @@ TEST_F(SplitTextNodeCommandTest, splitInMarkerInterior) {
EphemeralRange range = PlainTextRange(0, 5).CreateRange(*div);
GetDocument().Markers().AddTextMatchMarker(
- range, DocumentMarker::MatchStatus::kInactive);
+ range, TextMatchMarker::MatchStatus::kInactive);
range = PlainTextRange(6, 11).CreateRange(*div);
GetDocument().Markers().AddTextMatchMarker(
- range, DocumentMarker::MatchStatus::kInactive);
+ range, TextMatchMarker::MatchStatus::kInactive);
range = PlainTextRange(12, 17).CreateRange(*div);
GetDocument().Markers().AddTextMatchMarker(
- range, DocumentMarker::MatchStatus::kInactive);
+ range, TextMatchMarker::MatchStatus::kInactive);
SimpleEditCommand* command = SplitTextNodeCommand::Create(
ToText(GetDocument().body()->firstChild()->firstChild()), 8);

Powered by Google App Engine
This is Rietveld 408576698