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

Unified Diff: third_party/WebKit/Source/core/editing/markers/TextMatchMarkerListImplTest.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/markers/TextMatchMarkerListImplTest.cpp
diff --git a/third_party/WebKit/Source/core/editing/markers/TextMatchMarkerListImplTest.cpp b/third_party/WebKit/Source/core/editing/markers/TextMatchMarkerListImplTest.cpp
index ad26bac789b5ef632c51b733a304ef8f744060ed..61ecd714ab8ab5e8509e9d8e9ad4e524a21e3af4 100644
--- a/third_party/WebKit/Source/core/editing/markers/TextMatchMarkerListImplTest.cpp
+++ b/third_party/WebKit/Source/core/editing/markers/TextMatchMarkerListImplTest.cpp
@@ -15,7 +15,7 @@ class TextMatchMarkerListImplTest : public EditingTestBase {
DocumentMarker* CreateMarker(unsigned start_offset, unsigned end_offset) {
return new TextMatchMarker(start_offset, end_offset,
- DocumentMarker::MatchStatus::kInactive);
+ TextMatchMarker::MatchStatus::kInactive);
}
Persistent<TextMatchMarkerListImpl> marker_list_;

Powered by Google App Engine
This is Rietveld 408576698