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

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

Issue 2911733002: [DMC #25] Make DocumentMarker::GetType() virtual (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/GrammarMarker.h
diff --git a/third_party/WebKit/Source/core/editing/markers/GrammarMarker.h b/third_party/WebKit/Source/core/editing/markers/GrammarMarker.h
index a764c2f492f075e3c7e8bdd95ca61383144f7677..118d0d8a2cd7cac5a3e34b23b90ce3ed8ac9d579 100644
--- a/third_party/WebKit/Source/core/editing/markers/GrammarMarker.h
+++ b/third_party/WebKit/Source/core/editing/markers/GrammarMarker.h
@@ -14,6 +14,9 @@ class CORE_EXPORT GrammarMarker final : public SpellCheckMarker {
GrammarMarker(unsigned start_offset,
unsigned end_offset,
const String& description);
+
+ // DocumentMarker implementations
+ MarkerType GetType() const;
yosin_UTC9 2017/05/29 05:17:09 nit: s/;/final ;/
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698