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

Unified Diff: content/shell/test_runner/web_frame_test_proxy.h

Issue 2831583004: Remove redundant WebLocalFrame* parameter from DidClearWindowObject (Closed)
Patch Set: Rebase Created 3 years, 8 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: content/shell/test_runner/web_frame_test_proxy.h
diff --git a/content/shell/test_runner/web_frame_test_proxy.h b/content/shell/test_runner/web_frame_test_proxy.h
index 2eadb0b5ab7daf491c810cb53baad371a08c7bf1..a70c95820f5683ca6c28c8e7ddaaa0b07ad4a810 100644
--- a/content/shell/test_runner/web_frame_test_proxy.h
+++ b/content/shell/test_runner/web_frame_test_proxy.h
@@ -281,9 +281,9 @@ class WebFrameTestProxy : public Base, public WebFrameTestProxyBase {
sink_id, security_origin, web_callbacks);
}
- void DidClearWindowObject(blink::WebLocalFrame* frame) override {
- test_client()->DidClearWindowObject(frame);
- Base::DidClearWindowObject(frame);
+ void DidClearWindowObject() override {
+ test_client()->DidClearWindowObject();
+ Base::DidClearWindowObject();
}
bool RunFileChooser(const blink::WebFileChooserParams& params,
blink::WebFileChooserCompletion* completion) override {
« no previous file with comments | « content/shell/test_runner/web_frame_test_client.cc ('k') | third_party/WebKit/Source/web/LocalFrameClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698