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

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

Issue 264943006: BrowserPlugin: Simplify content/public API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@guestview_manager_v1
Patch Set: Fixed nit 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 369a23d9b4d7b19196b6b5a551b9ce8f68ad3c2a..43012be63d70975618fd918ed312e28ebe7a78d4 100644
--- a/content/public/browser/browser_plugin_guest_manager_delegate.cc
+++ b/content/public/browser/browser_plugin_guest_manager_delegate.cc
@@ -10,24 +10,6 @@ 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;

Powered by Google App Engine
This is Rietveld 408576698