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

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

Issue 261013005: BrowserPlugin: Move CreateGuest to chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@guestview_manager_simplify_api
Patch Set: Removed unnecessary includes 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
index 43012be63d70975618fd918ed312e28ebe7a78d4..16cdd99a03702e0a650c9a6a851856c6109ab7a3 100644
--- a/content/public/browser/browser_plugin_guest_manager_delegate.cc
+++ b/content/public/browser/browser_plugin_guest_manager_delegate.cc
@@ -6,13 +6,16 @@
namespace content {
-int BrowserPluginGuestManagerDelegate::GetNextInstanceID() {
- return 0;
+content::WebContents* BrowserPluginGuestManagerDelegate::CreateGuest(
+ SiteInstance* embedder_site_instance,
+ int instance_id,
+ const StorageInfo& storage_info,
+ scoped_ptr<base::DictionaryValue> extra_params) {
+ return NULL;
}
-content::SiteInstance* BrowserPluginGuestManagerDelegate::GetGuestSiteInstance(
- const GURL& guest_site) {
- return NULL;
+int BrowserPluginGuestManagerDelegate::GetNextInstanceID() {
+ return 0;
}
bool BrowserPluginGuestManagerDelegate::ForEachGuest(

Powered by Google App Engine
This is Rietveld 408576698