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); |