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_; |
}; |