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

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

Issue 2723663002: Refactor DocumentMarkerController (Closed)
Patch Set: Rebase 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.h
diff --git a/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h b/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h
index b4ed20b8d42f476ded78de15c0672f4bd150a25f..9e58753851247bea874164178a39319b7f5b0f86 100644
--- a/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h
+++ b/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h
@@ -141,7 +141,6 @@ class CORE_EXPORT DocumentMarker : public GarbageCollected<DocumentMarker> {
unsigned startOffset,
unsigned endOffset,
const String& description);
- DocumentMarker(unsigned startOffset, unsigned endOffset, bool activeMatch);
DocumentMarker(unsigned startOffset,
unsigned endOffset,
Color underlineColor,
@@ -181,6 +180,7 @@ class CORE_EXPORT DocumentMarker : public GarbageCollected<DocumentMarker> {
protected:
DocumentMarker(const DocumentMarker&);
+ DocumentMarker(unsigned startOffset, unsigned endOffset, bool activeMatch);
private:
MarkerType m_type;

Powered by Google App Engine
This is Rietveld 408576698