| Index: content/renderer/browser_plugin/mock_browser_plugin_texture_provider.cc
|
| diff --git a/content/renderer/browser_plugin/mock_browser_plugin_texture_provider.cc b/content/renderer/browser_plugin/mock_browser_plugin_texture_provider.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..52b2f119dda7e6402606fd6d6cb0d09a4030c646
|
| --- /dev/null
|
| +++ b/content/renderer/browser_plugin/mock_browser_plugin_texture_provider.cc
|
| @@ -0,0 +1,23 @@
|
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "content/renderer/browser_plugin/mock_browser_plugin_texture_provider.h"
|
| +
|
| +#include "base/message_loop_proxy.h"
|
| +
|
| +namespace content {
|
| +
|
| +MockBrowserPluginTextureProvider::MockBrowserPluginTextureProvider(
|
| + int instance_id,
|
| + int routing_id,
|
| + IPC::ChannelProxy* channel_proxy)
|
| + : BrowserPluginTextureProvider(instance_id,
|
| + routing_id,
|
| + channel_proxy) {
|
| +}
|
| +
|
| +MockBrowserPluginTextureProvider::~MockBrowserPluginTextureProvider() {
|
| +}
|
| +
|
| +} // namespace content
|
|
|