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

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

Issue 261363002: Rename BrowserPluginGuestManagerDelegate to BrowserPluginGuestManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@guestview_manager_cleanupguestmanager
Patch Set: Addressed nits 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.cc
diff --git a/content/public/browser/browser_plugin_guest_manager_delegate.cc b/content/public/browser/browser_plugin_guest_manager.cc
similarity index 66%
rename from content/public/browser/browser_plugin_guest_manager_delegate.cc
rename to content/public/browser/browser_plugin_guest_manager.cc
index 2d70a75b16da8bd7e5c46280795828f257bf0f25..36bcc43404e6de40ae7cbbb753183d8564f227cf 100644
--- a/content/public/browser/browser_plugin_guest_manager_delegate.cc
+++ b/content/public/browser/browser_plugin_guest_manager.cc
@@ -2,11 +2,11 @@
// 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"
+#include "content/public/browser/browser_plugin_guest_manager.h"
namespace content {
-content::WebContents* BrowserPluginGuestManagerDelegate::CreateGuest(
+content::WebContents* BrowserPluginGuestManager::CreateGuest(
SiteInstance* embedder_site_instance,
int instance_id,
const std::string& storage_partition_id,
@@ -15,11 +15,11 @@ content::WebContents* BrowserPluginGuestManagerDelegate::CreateGuest(
return NULL;
}
-int BrowserPluginGuestManagerDelegate::GetNextInstanceID() {
+int BrowserPluginGuestManager::GetNextInstanceID() {
return 0;
}
-bool BrowserPluginGuestManagerDelegate::ForEachGuest(
+bool BrowserPluginGuestManager::ForEachGuest(
WebContents* embedder_web_contents,
const GuestCallback& callback) {
return false;

Powered by Google App Engine
This is Rietveld 408576698