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