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

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

Issue 2905753002: [DMC #17] Make TextMatchMarkers constructible in single step (Closed)
Patch Set: Fix build error 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/DocumentMarker.h
diff --git a/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h b/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h
index 0171ea10ed9826b8fe17f250839600ae601049c1..6d7629028e2bc54577b88def849adb2a6a2ac36b 100644
--- a/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h
+++ b/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h
@@ -136,7 +136,6 @@ class CORE_EXPORT DocumentMarker : public GarbageCollected<DocumentMarker> {
unsigned start_offset,
unsigned end_offset,
const String& description);
- DocumentMarker(unsigned start_offset, unsigned end_offset, MatchStatus);
DocumentMarker(unsigned start_offset,
unsigned end_offset,
Color underline_color,
@@ -176,6 +175,9 @@ class CORE_EXPORT DocumentMarker : public GarbageCollected<DocumentMarker> {
DECLARE_TRACE();
+ protected:
+ DocumentMarker(unsigned start_offset, unsigned end_offset, MatchStatus);
+
private:
MarkerType type_;
unsigned start_offset_;

Powered by Google App Engine
This is Rietveld 408576698