summaryrefslogtreecommitdiffstats
path: root/chromium/content/public/browser/browser_plugin_guest_manager.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/content/public/browser/browser_plugin_guest_manager.cc')
-rw-r--r--chromium/content/public/browser/browser_plugin_guest_manager.cc29
1 files changed, 29 insertions, 0 deletions
diff --git a/chromium/content/public/browser/browser_plugin_guest_manager.cc b/chromium/content/public/browser/browser_plugin_guest_manager.cc
new file mode 100644
index 00000000000..abb0bb06e16
--- /dev/null
+++ b/chromium/content/public/browser/browser_plugin_guest_manager.cc
@@ -0,0 +1,29 @@
+// Copyright 2014 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/public/browser/browser_plugin_guest_manager.h"
+
+#include "base/values.h"
+
+namespace content {
+
+content::WebContents* BrowserPluginGuestManager::CreateGuest(
+ SiteInstance* embedder_site_instance,
+ int instance_id,
+ scoped_ptr<base::DictionaryValue> extra_params) {
+ return NULL;
+}
+
+int BrowserPluginGuestManager::GetNextInstanceID() {
+ return 0;
+}
+
+bool BrowserPluginGuestManager::ForEachGuest(
+ WebContents* embedder_web_contents,
+ const GuestCallback& callback) {
+ return false;
+}
+
+} // content
+