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

Side by Side Diff: content/public/browser/browser_plugin_guest_manager.h

Issue 261363002: Rename BrowserPluginGuestManagerDelegate to BrowserPluginGuestManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@guestview_manager_cleanupguestmanager
Patch Set: Fixed Android Build (Hopefully) 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_MANAGER_DELEGATE_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_MANAGER_H_
6 #define CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_MANAGER_DELEGATE_H_ 6 #define CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_MANAGER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
11 #include "content/common/content_export.h" 11 #include "content/common/content_export.h"
12 12
13 class GURL; 13 class GURL;
14 14
15 namespace base { 15 namespace base {
16 class DictionaryValue; 16 class DictionaryValue;
17 } // namespace base 17 } // namespace base
18 18
19 namespace content { 19 namespace content {
20 20
21 class SiteInstance; 21 class SiteInstance;
22 class WebContents; 22 class WebContents;
23 23
24 // A BrowserPluginGuestManagerDelegate offloads guest management and routing 24 // A BrowserPluginGuestManager offloads guest management and routing
25 // operations outside of the content layer. 25 // operations outside of the content layer.
26 class CONTENT_EXPORT BrowserPluginGuestManagerDelegate { 26 class CONTENT_EXPORT BrowserPluginGuestManager {
27 public: 27 public:
28 virtual ~BrowserPluginGuestManagerDelegate() {} 28 virtual ~BrowserPluginGuestManager() {}
29 29
30 // Requests the allocation of a new guest WebContents. 30 // Requests the allocation of a new guest WebContents.
31 virtual content::WebContents* CreateGuest( 31 virtual content::WebContents* CreateGuest(
32 content::SiteInstance* embedder_site_instance, 32 content::SiteInstance* embedder_site_instance,
33 int instance_id, 33 int instance_id,
34 const std::string& storage_partition_id, 34 const std::string& storage_partition_id,
35 bool persist_storage, 35 bool persist_storage,
36 scoped_ptr<base::DictionaryValue> extra_params); 36 scoped_ptr<base::DictionaryValue> extra_params);
37 37
38 // Return a new instance ID. 38 // Return a new instance ID.
(...skipping 16 matching lines...) Expand all
55 // Iterates over all WebContents belonging to a given |embedder_web_contents|, 55 // Iterates over all WebContents belonging to a given |embedder_web_contents|,
56 // calling |callback| for each. If one of the callbacks returns true, then 56 // calling |callback| for each. If one of the callbacks returns true, then
57 // the iteration exits early. 57 // the iteration exits early.
58 typedef base::Callback<bool(WebContents*)> GuestCallback; 58 typedef base::Callback<bool(WebContents*)> GuestCallback;
59 virtual bool ForEachGuest(WebContents* embedder_web_contents, 59 virtual bool ForEachGuest(WebContents* embedder_web_contents,
60 const GuestCallback& callback); 60 const GuestCallback& callback);
61 }; 61 };
62 62
63 } // namespace content 63 } // namespace content
64 64
65 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_MANAGER_DELEGATE_H_ 65 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_MANAGER_H_
OLDNEW
« no previous file with comments | « content/public/browser/browser_context.h ('k') | content/public/browser/browser_plugin_guest_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698