| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/renderer/browser_plugin/mock_browser_plugin_manager.h" | 5 #include "content/renderer/browser_plugin/mock_browser_plugin_manager.h" |
| 6 | 6 |
| 7 #include "ipc/ipc_message.h" | 7 #include "ipc/ipc_message.h" |
| 8 #include "content/renderer/browser_plugin/mock_browser_plugin.h" | 8 #include "content/renderer/browser_plugin/mock_browser_plugin.h" |
| 9 | 9 |
| 10 namespace content { | 10 namespace content { |
| 11 | 11 |
| 12 MockBrowserPluginManager::MockBrowserPluginManager( | 12 MockBrowserPluginManager::MockBrowserPluginManager( |
| 13 RenderViewImpl* render_view) | 13 RenderViewImpl* render_view) |
| 14 : BrowserPluginManager(render_view) { | 14 : BrowserPluginManager(render_view) { |
| 15 } | 15 } |
| 16 | 16 |
| 17 MockBrowserPluginManager::~MockBrowserPluginManager() { | 17 MockBrowserPluginManager::~MockBrowserPluginManager() { |
| 18 } | 18 } |
| 19 | 19 |
| 20 BrowserPlugin* MockBrowserPluginManager::CreateBrowserPlugin( | 20 BrowserPluginImpl* MockBrowserPluginManager::CreateBrowserPlugin( |
| 21 RenderViewImpl* render_view, | 21 RenderViewImpl* render_view, |
| 22 WebKit::WebFrame* frame, | 22 WebKit::WebFrame* frame, |
| 23 const WebKit::WebPluginParams& params) { | 23 const WebKit::WebPluginParams& params) { |
| 24 return new MockBrowserPlugin(++browser_plugin_counter_, | 24 return new MockBrowserPlugin(++browser_plugin_counter_, |
| 25 render_view, | 25 render_view, |
| 26 frame, | 26 frame, |
| 27 params); | 27 params); |
| 28 } | 28 } |
| 29 | 29 |
| 30 bool MockBrowserPluginManager::Send(IPC::Message* msg) { | 30 bool MockBrowserPluginManager::Send(IPC::Message* msg) { |
| (...skipping 20 matching lines...) Expand all Loading... |
| 51 } | 51 } |
| 52 | 52 |
| 53 bool MockBrowserPluginManager::OnMessageReceived( | 53 bool MockBrowserPluginManager::OnMessageReceived( |
| 54 const IPC::Message& message) { | 54 const IPC::Message& message) { |
| 55 // Save the message in the sink. | 55 // Save the message in the sink. |
| 56 sink_.OnMessageReceived(message); | 56 sink_.OnMessageReceived(message); |
| 57 return false; | 57 return false; |
| 58 } | 58 } |
| 59 | 59 |
| 60 } // namespace content | 60 } // namespace content |
| OLD | NEW |