OLD | NEW |
---|---|
(Empty) | |
1 #include "content/renderer/browser_plugin/tests/mock_browser_plugin.h" | |
2 | |
3 namespace content { | |
4 namespace browser_plugin { | |
5 | |
6 MockBrowserPlugin::MockBrowserPlugin( | |
7 int id, | |
8 RenderViewImpl* render_view, | |
9 int routing_id, | |
10 WebKit::WebFrame* frame, | |
11 const WebKit::WebPluginParams& params) | |
12 : BrowserPlugin(id, render_view, routing_id, frame, params) { | |
13 } | |
14 | |
15 MockBrowserPlugin::~MockBrowserPlugin() {} | |
16 | |
17 } // namespace browser_plugin | |
18 } // namespace content | |
OLD | NEW |