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

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

Issue 2776333005: Remove redundant WebLocalFrame* parameter from didChangeIcon (Closed)
Patch Set: Created 3 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
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 6a3db31c72cfce443c60ddff9c0d06c0b8e3718f..485ab28ad1b63fdd01c06b2a8b6fe043e3218c5c 100644
--- a/content/shell/test_runner/web_frame_test_proxy.h
+++ b/content/shell/test_runner/web_frame_test_proxy.h
@@ -135,10 +135,9 @@ class WebFrameTestProxy : public Base, public WebFrameTestProxyBase {
Base::didReceiveTitle(frame, title, direction);
}
- void didChangeIcon(blink::WebLocalFrame* frame,
- blink::WebIconURL::Type icon_type) override {
- test_client()->didChangeIcon(frame, icon_type);
- Base::didChangeIcon(frame, icon_type);
+ void didChangeIcon(blink::WebIconURL::Type icon_type) override {
+ test_client()->didChangeIcon(icon_type);
+ Base::didChangeIcon(icon_type);
}
void didFinishDocumentLoad(blink::WebLocalFrame* frame) 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