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

Unified Diff: third_party/WebKit/Source/core/editing/markers/TextMatchMarker.h

Issue 2790703004: [WIP] Move DocumentMarker accessors into subclasses (Closed)
Patch Set: Move CompositionMarkerList::at() into previous CL Created 3 years, 9 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/TextMatchMarker.h
diff --git a/third_party/WebKit/Source/core/editing/markers/TextMatchMarker.h b/third_party/WebKit/Source/core/editing/markers/TextMatchMarker.h
index 16005c09f7456d383e2275590f7dd450471059cd..e04d342a0834cfdd8d0bcf68e73ef27c5ebe4299 100644
--- a/third_party/WebKit/Source/core/editing/markers/TextMatchMarker.h
+++ b/third_party/WebKit/Source/core/editing/markers/TextMatchMarker.h
@@ -17,12 +17,10 @@ class CORE_EXPORT TextMatchMarker final : public DocumentMarker {
// DocumentMarker implementations
TextMatchMarker* clone() const final;
-
MarkerType type() const final;
- bool activeMatch() const final;
-
// TextMatchMarker-specific
+ bool activeMatch() const;
void setActiveMatch(bool active) { m_activeMatch = active; }
bool isRendered() const { return m_state == State::ValidNotNull; }

Powered by Google App Engine
This is Rietveld 408576698