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

Unified Diff: webkit/mocks/mock_webframe.cc

Issue 6677069: Provisional fix for WebFrame API change upstream. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 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 | « webkit/mocks/mock_webframe.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/mocks/mock_webframe.cc
diff --git a/webkit/mocks/mock_webframe.cc b/webkit/mocks/mock_webframe.cc
index 1423039813dd11faddb749b2c858da3d1b01f17b..6623a3d340d6164b724ac5f8df29dab8886db958 100644
--- a/webkit/mocks/mock_webframe.cc
+++ b/webkit/mocks/mock_webframe.cc
@@ -367,6 +367,10 @@ WebString MockWebFrame::contentAsMarkup() const {
return WebString();
}
+WebString MockWebFrame::renderTreeAsText(bool showDebugInfo) const {
+ return WebString();
+}
+
WebString MockWebFrame::renderTreeAsText() const {
return WebString();
}
@@ -400,6 +404,10 @@ bool MockWebFrame::pauseSVGAnimation(const WebString& animationId,
return false;
}
+WebString MockWebFrame::layerTreeAsText(bool showDebugInfo) const {
+ return WebString();
+}
+
WebString MockWebFrame::layerTreeAsText() const {
return WebString();
}
« no previous file with comments | « webkit/mocks/mock_webframe.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698