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

Unified Diff: third_party/WebKit/Source/web/WebViewImpl.h

Issue 1774943003: blink: Rename platform/ methods to prefix with get when they collide. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clash-platform: rebase-yayyyyyyyy Created 4 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
« no previous file with comments | « third_party/WebKit/Source/web/WebDataSourceImpl.cpp ('k') | third_party/WebKit/Source/web/WebViewImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/WebViewImpl.h
diff --git a/third_party/WebKit/Source/web/WebViewImpl.h b/third_party/WebKit/Source/web/WebViewImpl.h
index e6d5b2cf1a3c6ebfaa2aa155d02b79b25c9cb271..cacaf399c256d33d8ecc5c3ac0c9fc8157c7bdae 100644
--- a/third_party/WebKit/Source/web/WebViewImpl.h
+++ b/third_party/WebKit/Source/web/WebViewImpl.h
@@ -495,7 +495,7 @@ public:
// Exposed for tests.
unsigned numLinkHighlights() { return m_linkHighlights.size(); }
- LinkHighlightImpl* linkHighlight(int i) { return m_linkHighlights[i].get(); }
+ LinkHighlightImpl* getLinkHighlight(int i) { return m_linkHighlights[i].get(); }
WebSettingsImpl* settingsImpl();
@@ -532,7 +532,7 @@ public:
void detachPaintArtifactCompositor();
// Use in Slimming Paint v2 to update the layer tree for the content.
- PaintArtifactCompositor& paintArtifactCompositor() { return m_paintArtifactCompositor; }
+ PaintArtifactCompositor& getPaintArtifactCompositor() { return m_paintArtifactCompositor; }
bool isTransparent() const;
void setIsTransparent(bool value);
« no previous file with comments | « third_party/WebKit/Source/web/WebDataSourceImpl.cpp ('k') | third_party/WebKit/Source/web/WebViewImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698