OLD | NEW |
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_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_MANAGER_H_ |
6 #define CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_MANAGER_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" |
(...skipping 13 matching lines...) Expand all Loading... |
24 // A BrowserPluginGuestManager 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 BrowserPluginGuestManager { | 26 class CONTENT_EXPORT BrowserPluginGuestManager { |
27 public: | 27 public: |
28 virtual ~BrowserPluginGuestManager() {} | 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, | |
35 bool persist_storage, | |
36 scoped_ptr<base::DictionaryValue> extra_params); | 34 scoped_ptr<base::DictionaryValue> extra_params); |
37 | 35 |
38 // Return a new instance ID. | 36 // Return a new instance ID. |
39 // TODO(fsamuel): Remove this. Once the instance ID concept is moved | 37 // TODO(fsamuel): Remove this. Once the instance ID concept is moved |
40 // entirely out of content and into chrome, this API will be unnecessary. | 38 // entirely out of content and into chrome, this API will be unnecessary. |
41 virtual int GetNextInstanceID(); | 39 virtual int GetNextInstanceID(); |
42 | 40 |
43 typedef base::Callback<void(WebContents*)> GuestByInstanceIDCallback; | 41 typedef base::Callback<void(WebContents*)> GuestByInstanceIDCallback; |
44 // Requests a guest WebContents associated with the provided | 42 // Requests a guest WebContents associated with the provided |
45 // |guest_instance_id|. If a guest associated with the provided ID | 43 // |guest_instance_id|. If a guest associated with the provided ID |
(...skipping 10 matching lines...) Expand all Loading... |
56 // calling |callback| for each. If one of the callbacks returns true, then | 54 // calling |callback| for each. If one of the callbacks returns true, then |
57 // the iteration exits early. | 55 // the iteration exits early. |
58 typedef base::Callback<bool(WebContents*)> GuestCallback; | 56 typedef base::Callback<bool(WebContents*)> GuestCallback; |
59 virtual bool ForEachGuest(WebContents* embedder_web_contents, | 57 virtual bool ForEachGuest(WebContents* embedder_web_contents, |
60 const GuestCallback& callback); | 58 const GuestCallback& callback); |
61 }; | 59 }; |
62 | 60 |
63 } // namespace content | 61 } // namespace content |
64 | 62 |
65 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_MANAGER_H_ | 63 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_MANAGER_H_ |
OLD | NEW |