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

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

Issue 2897493002: Rename DMC::SetMarkersActive() to SetTextMatchMarkersActive() (Closed)
Patch Set: Revert change to rename whitelist file 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/DocumentMarkerController.h
diff --git a/third_party/WebKit/Source/core/editing/markers/DocumentMarkerController.h b/third_party/WebKit/Source/core/editing/markers/DocumentMarkerController.h
index 4bcc38db12950418fa33118a54df0b6dce11eef1..29f8759040a723ec6216f96da1852160cbb9bc7b 100644
--- a/third_party/WebKit/Source/core/editing/markers/DocumentMarkerController.h
+++ b/third_party/WebKit/Source/core/editing/markers/DocumentMarkerController.h
@@ -77,13 +77,13 @@ class CORE_EXPORT DocumentMarkerController final
void RepaintMarkers(
DocumentMarker::MarkerTypes = DocumentMarker::AllMarkers());
// Returns true if markers within a range are found.
- bool SetMarkersActive(const EphemeralRange&, bool);
+ bool SetTextMatchMarkersActive(const EphemeralRange&, bool);
// Returns true if markers within a range defined by a node, |startOffset| and
// |endOffset| are found.
- bool SetMarkersActive(Node*,
- unsigned start_offset,
- unsigned end_offset,
- bool);
+ bool SetTextMatchMarkersActive(Node*,
+ unsigned start_offset,
+ unsigned end_offset,
+ bool);
bool HasMarkers(Node* node) const { return markers_.Contains(node); }
// Returns a marker of one of the specified types that includes the specified

Powered by Google App Engine
This is Rietveld 408576698