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

Unified Diff: third_party/WebKit/Source/core/editing/markers/SpellingMarker.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/SpellingMarker.h
diff --git a/third_party/WebKit/Source/core/editing/markers/SpellingMarker.h b/third_party/WebKit/Source/core/editing/markers/SpellingMarker.h
index 46efadacd804a7243e63c763229f823b6f9a5281..ef4ef57787c6ccf7422ff20bcb8c8061eb37660a 100644
--- a/third_party/WebKit/Source/core/editing/markers/SpellingMarker.h
+++ b/third_party/WebKit/Source/core/editing/markers/SpellingMarker.h
@@ -14,6 +14,9 @@ class CORE_EXPORT SpellingMarker final : public SpellCheckMarker {
SpellingMarker(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