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

Unified Diff: third_party/WebKit/Source/core/testing/Internals.cpp

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/testing/Internals.cpp
diff --git a/third_party/WebKit/Source/core/testing/Internals.cpp b/third_party/WebKit/Source/core/testing/Internals.cpp
index b77eb4b0b06a1fc88f93cce1595facfdb2a0d1df..29cddf967555d612c0707c618ee9c00cfd8db2d9 100644
--- a/third_party/WebKit/Source/core/testing/Internals.cpp
+++ b/third_party/WebKit/Source/core/testing/Internals.cpp
@@ -1070,13 +1070,13 @@ void Internals::addCompositionMarker(const Range* range,
}
}
-void Internals::setMarkersActive(Node* node,
- unsigned start_offset,
- unsigned end_offset,
- bool active) {
+void Internals::setTextMatchMarkersActive(Node* node,
+ unsigned start_offset,
+ unsigned end_offset,
+ bool active) {
DCHECK(node);
- node->GetDocument().Markers().SetMarkersActive(node, start_offset, end_offset,
- active);
+ node->GetDocument().Markers().SetTextMatchMarkersActive(node, start_offset,
+ end_offset, active);
}
void Internals::setMarkedTextMatchesAreHighlighted(Document* document,
« no previous file with comments | « third_party/WebKit/Source/core/testing/Internals.h ('k') | third_party/WebKit/Source/core/testing/Internals.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698