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

Unified Diff: third_party/WebKit/Source/core/editing/markers/DocumentMarker.cpp

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/DocumentMarker.cpp
diff --git a/third_party/WebKit/Source/core/editing/markers/DocumentMarker.cpp b/third_party/WebKit/Source/core/editing/markers/DocumentMarker.cpp
index 67817d6df4e99cce35c9d6cbf2e74c06468656db..811f5cce91b510ab8dd3525ae9212824bdd3d825 100644
--- a/third_party/WebKit/Source/core/editing/markers/DocumentMarker.cpp
+++ b/third_party/WebKit/Source/core/editing/markers/DocumentMarker.cpp
@@ -93,24 +93,4 @@ void DocumentMarker::shiftOffsets(int delta) {
m_endOffset += delta;
}
-const String& DocumentMarker::description() const {
- return emptyString;
-}
-
-bool DocumentMarker::activeMatch() const {
- return false;
-}
-
-Color DocumentMarker::underlineColor() const {
- return Color::transparent;
-}
-
-bool DocumentMarker::thick() const {
- return false;
-}
-
-Color DocumentMarker::backgroundColor() const {
- return Color::transparent;
-}
-
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698