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

Unified Diff: third_party/WebKit/Source/web/tests/FakeWebPlugin.h

Issue 2855123003: Remove rendundant WebLocalFrame parameter in various plugin code. (Closed)
Patch Set: Fix Android 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: third_party/WebKit/Source/web/tests/FakeWebPlugin.h
diff --git a/third_party/WebKit/Source/web/tests/FakeWebPlugin.h b/third_party/WebKit/Source/web/tests/FakeWebPlugin.h
index 1a5eb121c03e9ad9ae31e5f41aa0a5a1d6352630..0e040a35b46b1ad78c944236f8c9bf7baccd3dd8 100644
--- a/third_party/WebKit/Source/web/tests/FakeWebPlugin.h
+++ b/third_party/WebKit/Source/web/tests/FakeWebPlugin.h
@@ -36,7 +36,6 @@
namespace blink {
class WebDragData;
-class WebFrame;
class WebInputEvent;
class WebPluginContainer;
class WebURLResponse;
@@ -44,7 +43,7 @@ struct WebPluginParams;
class FakeWebPlugin : public WebPlugin {
public:
- FakeWebPlugin(WebFrame*, const WebPluginParams&);
+ explicit FakeWebPlugin(const WebPluginParams&);
// WebPlugin methods:
bool Initialize(WebPluginContainer*) override;
@@ -82,7 +81,6 @@ class FakeWebPlugin : public WebPlugin {
WebPluginContainer* Container() const { return container_; }
private:
- WebFrame* frame_;
WebPluginContainer* container_;
};

Powered by Google App Engine
This is Rietveld 408576698