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

Unified Diff: content/renderer/render_frame_impl.h

Issue 2855123003: Remove rendundant WebLocalFrame parameter in various plugin code. (Closed)
Patch Set: Fix Android Created 3 years, 7 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/renderer/render_frame_impl.h
diff --git a/content/renderer/render_frame_impl.h b/content/renderer/render_frame_impl.h
index 1fdeefe8b219d6f7c70b82c170e2078dfea06117..32949f45c2d4542ea3afd4ae521efb54ca5d48cb 100644
--- a/content/renderer/render_frame_impl.h
+++ b/content/renderer/render_frame_impl.h
@@ -438,7 +438,6 @@ class CONTENT_EXPORT RenderFrameImpl
const ContextMenuParams& params) override;
void CancelContextMenu(int request_id) override;
blink::WebPlugin* CreatePlugin(
- blink::WebFrame* frame,
const WebPluginInfo& info,
const blink::WebPluginParams& params,
std::unique_ptr<PluginInstanceThrottler> throttler) override;
@@ -498,8 +497,7 @@ class CONTENT_EXPORT RenderFrameImpl
void SetHostZoomLevel(const GURL& url, double zoom_level) override;
// blink::WebFrameClient implementation:
- blink::WebPlugin* CreatePlugin(blink::WebLocalFrame* frame,
- const blink::WebPluginParams& params) override;
+ blink::WebPlugin* CreatePlugin(const blink::WebPluginParams& params) override;
blink::WebMediaPlayer* CreateMediaPlayer(
const blink::WebMediaPlayerSource& source,
blink::WebMediaPlayerClient* client,

Powered by Google App Engine
This is Rietveld 408576698