| Index: content/renderer/browser_plugin/mock_browser_plugin.cc
|
| diff --git a/content/renderer/browser_plugin/mock_browser_plugin.cc b/content/renderer/browser_plugin/mock_browser_plugin.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..006f71302b6f1265efe052fb5a2fe754dbb82936
|
| --- /dev/null
|
| +++ b/content/renderer/browser_plugin/mock_browser_plugin.cc
|
| @@ -0,0 +1,18 @@
|
| +#include "content/renderer/browser_plugin/mock_browser_plugin.h"
|
| +
|
| +namespace content {
|
| +namespace browser_plugin {
|
| +
|
| +MockBrowserPlugin::MockBrowserPlugin(
|
| + int id,
|
| + RenderViewImpl* render_view,
|
| + WebKit::WebFrame* frame,
|
| + const WebKit::WebPluginParams& params)
|
| + : BrowserPlugin(id, render_view, frame, params),
|
| + transport_dib_next_sequence_number_(0) {
|
| +}
|
| +
|
| +MockBrowserPlugin::~MockBrowserPlugin() {}
|
| +
|
| +} // namespace browser_plugin
|
| +} // namespace content
|
|
|