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

Side by Side 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: Some cleanup and simpification 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "content/public/browser/browser_plugin_guest_manager_delegate.h"
6 #include "ipc/ipc_listener.h"
7
8 namespace content {
9
10 int BrowserPluginGuestManagerDelegate::GetNextInstanceID() {
11 return 0;
12 }
13
14 WebContents* BrowserPluginGuestManagerDelegate::GetGuestByInstanceID(
15 int guest_instance_id,
16 int embedder_render_process_id) {
17 return NULL;
18 }
19
20 bool BrowserPluginGuestManagerDelegate::CanEmbedderAccessInstanceIDMaybeKill(
21 int embedder_render_process_id,
22 int guest_instance_id) {
23 return false;
24 }
25
26 bool BrowserPluginGuestManagerDelegate::CanEmbedderAccessInstanceID(
27 int embedder_render_process_id,
28 int guest_instance_id) {
29 return false;
30 }
31
32 content::SiteInstance* BrowserPluginGuestManagerDelegate::GetGuestSiteInstance(
33 const GURL& guest_site) {
34 return NULL;
35 }
36
37 bool BrowserPluginGuestManagerDelegate::ForEachGuest(
38 WebContents* embedder_web_contents,
39 const GuestCallback& callback) {
40 return false;
41 }
42
43 } // content
44
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698