| Index: content/renderer/browser_plugin/mock_browser_plugin_manager.h
|
| diff --git a/content/renderer/browser_plugin/mock_browser_plugin_manager.h b/content/renderer/browser_plugin/mock_browser_plugin_manager.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..dcdfb5915d2255bfa75afdb47090537eac1d4a58
|
| --- /dev/null
|
| +++ b/content/renderer/browser_plugin/mock_browser_plugin_manager.h
|
| @@ -0,0 +1,48 @@
|
| +#ifndef CONTENT_RENDERER_BROWSER_PLUGIN_TESTS_BROWSER_PLUGIN_MANAGER_IMPL_H_
|
| +#define CONTENT_RENDERER_BROWSER_PLUGIN_TESTS_BROWSER_PLUGIN_MANAGER_IMPL_H_
|
| +
|
| +#include "content/renderer/browser_plugin/browser_plugin_manager.h"
|
| +
|
| +#include "base/memory/scoped_ptr.h"
|
| +#include "ipc/ipc_message_utils.h"
|
| +#include "ipc/ipc_test_sink.h"
|
| +
|
| +namespace content {
|
| +namespace browser_plugin {
|
| +
|
| +class MockBrowserPluginManager : public BrowserPluginManager {
|
| + public:
|
| + MockBrowserPluginManager();
|
| + virtual ~MockBrowserPluginManager();
|
| +
|
| + // BrowserPluginManager implementation.
|
| + virtual BrowserPlugin* CreateBrowserPlugin(
|
| + RenderViewImpl* render_view,
|
| + WebKit::WebFrame* frame,
|
| + const WebKit::WebPluginParams& params) OVERRIDE;
|
| +
|
| + // Iterate over all BrowserPlugins and tell them to cleanup after themselves
|
| + // before we blow away the MockRenderProcess.
|
| + void Cleanup();
|
| +
|
| + // Provides access to the messages that have been received by this thread.
|
| + IPC::TestSink& sink() { return sink_; }
|
| +
|
| + // IPC::Sender implementation.
|
| + virtual bool Send(IPC::Message* msg) OVERRIDE;
|
| +
|
| + // RenderProcessObserver override.
|
| + virtual bool OnControlMessageReceived(const IPC::Message& message) OVERRIDE;
|
| + private:
|
| + IPC::TestSink sink_;
|
| +
|
| + // The last known good deserializer for sync messages.
|
| + scoped_ptr<IPC::MessageReplyDeserializer> reply_deserializer_;
|
| +
|
| + DISALLOW_COPY_AND_ASSIGN(MockBrowserPluginManager);
|
| +};
|
| +
|
| +} // namespace browser_plugin
|
| +} // namespace content
|
| +
|
| +#endif // CONTENT_RENDERER_BROWSER_PLUGIN_TESTS_BROWSER_PLUGIN_MANAGER_IMPL_H_
|
|
|