Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(803)

Unified Diff: content/public/browser/browser_plugin_guest_manager_delegate.cc

Issue 258373002: Towards moving guest management to chrome: Introduce GuestViewManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Android build Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/public/browser/browser_plugin_guest_manager_delegate.cc
diff --git a/content/public/browser/browser_plugin_guest_manager_delegate.cc b/content/public/browser/browser_plugin_guest_manager_delegate.cc
new file mode 100644
index 0000000000000000000000000000000000000000..369a23d9b4d7b19196b6b5a551b9ce8f68ad3c2a
--- /dev/null
+++ b/content/public/browser/browser_plugin_guest_manager_delegate.cc
@@ -0,0 +1,43 @@
+// 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_delegate.h"
+
+namespace content {
+
+int BrowserPluginGuestManagerDelegate::GetNextInstanceID() {
+ return 0;
+}
+
+WebContents* BrowserPluginGuestManagerDelegate::GetGuestByInstanceID(
+ int guest_instance_id,
+ int embedder_render_process_id) {
+ return NULL;
+}
+
+bool BrowserPluginGuestManagerDelegate::CanEmbedderAccessInstanceIDMaybeKill(
+ int embedder_render_process_id,
+ int guest_instance_id) {
+ return false;
+}
+
+bool BrowserPluginGuestManagerDelegate::CanEmbedderAccessInstanceID(
+ int embedder_render_process_id,
+ int guest_instance_id) {
+ return false;
+}
+
+content::SiteInstance* BrowserPluginGuestManagerDelegate::GetGuestSiteInstance(
+ const GURL& guest_site) {
+ return NULL;
+}
+
+bool BrowserPluginGuestManagerDelegate::ForEachGuest(
+ WebContents* embedder_web_contents,
+ const GuestCallback& callback) {
+ return false;
+}
+
+} // content
+
« no previous file with comments | « content/public/browser/browser_plugin_guest_manager_delegate.h ('k') | content/public/test/test_browser_context.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698