OLD | NEW |
---|---|
1 // Copyright 2013 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 CHROME_BROWSER_GUESTVIEW_GUESTVIEW_H_ | 5 #ifndef CHROME_BROWSER_GUEST_VIEW_GUEST_VIEW_BASE_H_ |
6 #define CHROME_BROWSER_GUESTVIEW_GUESTVIEW_H_ | 6 #define CHROME_BROWSER_GUEST_VIEW_GUEST_VIEW_BASE_H_ |
7 | 7 |
8 #include <queue> | 8 #include <queue> |
9 | 9 |
10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
11 #include "base/values.h" | 11 #include "base/values.h" |
12 #include "content/public/browser/browser_plugin_guest_delegate.h" | 12 #include "content/public/browser/browser_plugin_guest_delegate.h" |
13 #include "content/public/browser/web_contents.h" | 13 #include "content/public/browser/web_contents.h" |
14 | 14 |
15 class AdViewGuest; | 15 class AdViewGuest; |
16 class WebViewGuest; | 16 class WebViewGuest; |
17 struct RendererContentSettingRules; | 17 struct RendererContentSettingRules; |
18 | 18 |
19 // A GuestView is the base class browser-side API implementation for a <*view> | 19 // A GuestViewBase is the base class browser-side API implementation for a |
20 // tag. GuestView maintains an association between a guest WebContents and an | 20 // <*view> tag. GuestViewBase maintains an association between a guest |
21 // embedder WebContents. It receives events issued from the guest and relays | 21 // WebContents and an embedder WebContents. It receives events issued from |
22 // them to the embedder. | 22 // the guest and relays them to the embedder. |
23 class GuestView : public content::BrowserPluginGuestDelegate { | 23 class GuestViewBase : public content::BrowserPluginGuestDelegate { |
24 public: | 24 public: |
25 enum Type { | |
26 WEBVIEW, | |
27 ADVIEW, | |
28 UNKNOWN | |
29 }; | |
30 | |
31 class Event { | 25 class Event { |
32 public: | 26 public: |
33 Event(const std::string& name, scoped_ptr<base::DictionaryValue> args); | 27 Event(const std::string& name, scoped_ptr<base::DictionaryValue> args); |
34 ~Event(); | 28 ~Event(); |
35 | 29 |
36 const std::string& name() const { return name_; } | 30 const std::string& name() const { return name_; } |
37 | 31 |
38 scoped_ptr<base::DictionaryValue> GetArguments(); | 32 scoped_ptr<base::DictionaryValue> GetArguments(); |
39 | 33 |
40 private: | 34 private: |
41 const std::string name_; | 35 const std::string name_; |
42 scoped_ptr<base::DictionaryValue> args_; | 36 scoped_ptr<base::DictionaryValue> args_; |
43 }; | 37 }; |
44 | 38 |
45 static Type GetViewTypeFromString(const std::string& api_type); | 39 // Returns a *ViewGuest if this GuestView is of the given view type. |
40 template <typename T> | |
41 T* As() { | |
42 if (GetViewType() == T::Type) { | |
43 return static_cast<T*>(this); | |
44 } | |
45 return NULL; | |
46 } | |
46 | 47 |
47 static GuestView* Create(content::WebContents* guest_web_contents, | 48 static GuestViewBase* Create(content::WebContents* guest_web_contents, |
48 const std::string& embedder_extension_id, | 49 const std::string& embedder_extension_id, |
49 Type view_type); | 50 const std::string& view_type); |
50 | 51 |
51 static GuestView* FromWebContents(content::WebContents* web_contents); | 52 static GuestViewBase* FromWebContents(content::WebContents* web_contents); |
52 | 53 |
53 static GuestView* From(int embedder_process_id, int instance_id); | 54 static GuestViewBase* From(int embedder_process_id, int instance_id); |
54 | 55 |
55 // For GuestViews, we create special guest processes, which host the | 56 // For GuestViewBases, we create special guest processes, which host the |
56 // tag content separately from the main application that embeds the tag. | 57 // tag content separately from the main application that embeds the tag. |
57 // A GuestView can specify both the partition name and whether the storage | 58 // A GuestViewBase can specify both the partition name and whether the storage |
58 // for that partition should be persisted. Each tag gets a SiteInstance with | 59 // for that partition should be persisted. Each tag gets a SiteInstance with |
59 // a specially formatted URL, based on the application it is hosted by and | 60 // a specially formatted URL, based on the application it is hosted by and |
60 // the partition requested by it. The format for that URL is: | 61 // the partition requested by it. The format for that URL is: |
61 // chrome-guest://partition_domain/persist?partition_name | 62 // chrome-guest://partition_domain/persist?partition_name |
62 static bool GetGuestPartitionConfigForSite(const GURL& site, | 63 static bool GetGuestPartitionConfigForSite(const GURL& site, |
63 std::string* partition_domain, | 64 std::string* partition_domain, |
64 std::string* partition_name, | 65 std::string* partition_name, |
65 bool* in_memory); | 66 bool* in_memory); |
66 | 67 |
67 // By default, JavaScript and images are enabled in guest content. | 68 // By default, JavaScript and images are enabled in guest content. |
68 static void GetDefaultContentSettingRules( | 69 static void GetDefaultContentSettingRules(RendererContentSettingRules* rules, |
69 RendererContentSettingRules* rules, bool incognito); | 70 bool incognito); |
71 | |
72 virtual const std::string& GetViewType() const = 0; | |
Dan Beam
2014/04/26 03:31:54
why does this interface need to return a const std
| |
70 | 73 |
71 virtual void Attach(content::WebContents* embedder_web_contents, | 74 virtual void Attach(content::WebContents* embedder_web_contents, |
72 const base::DictionaryValue& args); | 75 const base::DictionaryValue& args); |
73 | 76 |
74 content::WebContents* embedder_web_contents() const { | 77 content::WebContents* embedder_web_contents() const { |
75 return embedder_web_contents_; | 78 return embedder_web_contents_; |
76 } | 79 } |
77 | 80 |
78 // Returns the guest WebContents. | 81 // Returns the guest WebContents. |
79 content::WebContents* guest_web_contents() const { | 82 content::WebContents* guest_web_contents() const { |
80 return guest_web_contents_; | 83 return guest_web_contents_; |
81 } | 84 } |
82 | 85 |
83 virtual Type GetViewType() const; | |
84 | |
85 // Returns a WebViewGuest if this GuestView belongs to a <webview>. | |
86 virtual WebViewGuest* AsWebView() = 0; | |
87 | |
88 // Returns an AdViewGuest if the GuestView belongs to an <adview>. | |
89 virtual AdViewGuest* AsAdView() = 0; | |
90 | |
91 // Returns whether this guest has an associated embedder. | 86 // Returns whether this guest has an associated embedder. |
92 bool attached() const { return !!embedder_web_contents_; } | 87 bool attached() const { return !!embedder_web_contents_; } |
93 | 88 |
94 // Returns the instance ID of the <*view> element. | 89 // Returns the instance ID of the <*view> element. |
95 int view_instance_id() const { return view_instance_id_; } | 90 int view_instance_id() const { return view_instance_id_; } |
96 | 91 |
97 // Returns the instance ID of the guest WebContents. | 92 // Returns the instance ID of the guest WebContents. |
98 int guest_instance_id() const { return guest_instance_id_; } | 93 int guest_instance_id() const { return guest_instance_id_; } |
99 | 94 |
100 // Returns the extension ID of the embedder. | 95 // Returns the extension ID of the embedder. |
101 const std::string& embedder_extension_id() const { | 96 const std::string& embedder_extension_id() const { |
102 return embedder_extension_id_; | 97 return embedder_extension_id_; |
103 } | 98 } |
104 | 99 |
105 // Returns whether this GuestView is embedded in an extension/app. | 100 // Returns whether this GuestView is embedded in an extension/app. |
106 bool in_extension() const { | 101 bool in_extension() const { return !embedder_extension_id_.empty(); } |
107 return !embedder_extension_id_.empty(); | |
108 } | |
109 | 102 |
110 // Returns the user browser context of the embedder. | 103 // Returns the user browser context of the embedder. |
111 content::BrowserContext* browser_context() const { return browser_context_; } | 104 content::BrowserContext* browser_context() const { return browser_context_; } |
112 | 105 |
113 // Returns the embedder's process ID. | 106 // Returns the embedder's process ID. |
114 int embedder_render_process_id() const { return embedder_render_process_id_; } | 107 int embedder_render_process_id() const { return embedder_render_process_id_; } |
115 | 108 |
116 protected: | 109 protected: |
117 GuestView(content::WebContents* guest_web_contents, | 110 GuestViewBase(content::WebContents* guest_web_contents, |
118 const std::string& embedder_extension_id); | 111 const std::string& embedder_extension_id); |
119 virtual ~GuestView(); | 112 virtual ~GuestViewBase(); |
120 | 113 |
121 // Dispatches an event |event_name| to the embedder with the |event| fields. | 114 // Dispatches an event |event_name| to the embedder with the |event| fields. |
122 void DispatchEvent(Event* event); | 115 void DispatchEvent(Event* event); |
123 | 116 |
124 private: | 117 private: |
125 void SendQueuedEvents(); | 118 void SendQueuedEvents(); |
126 | 119 |
127 content::WebContents* const guest_web_contents_; | 120 content::WebContents* const guest_web_contents_; |
128 content::WebContents* embedder_web_contents_; | 121 content::WebContents* embedder_web_contents_; |
129 const std::string embedder_extension_id_; | 122 const std::string embedder_extension_id_; |
130 int embedder_render_process_id_; | 123 int embedder_render_process_id_; |
131 content::BrowserContext* const browser_context_; | 124 content::BrowserContext* const browser_context_; |
132 // |guest_instance_id_| is a profile-wide unique identifier for a guest | 125 // |guest_instance_id_| is a profile-wide unique identifier for a guest |
133 // WebContents. | 126 // WebContents. |
134 const int guest_instance_id_; | 127 const int guest_instance_id_; |
135 // |view_instance_id_| is an identifier that's unique within a particular | 128 // |view_instance_id_| is an identifier that's unique within a particular |
136 // embedder RenderViewHost for a particular <*view> instance. | 129 // embedder RenderViewHost for a particular <*view> instance. |
137 int view_instance_id_; | 130 int view_instance_id_; |
138 | 131 |
139 // This is a queue of Events that are destined to be sent to the embedder once | 132 // This is a queue of Events that are destined to be sent to the embedder once |
140 // the guest is attached to a particular embedder. | 133 // the guest is attached to a particular embedder. |
141 std::deque<linked_ptr<Event> > pending_events_; | 134 std::deque<linked_ptr<Event> > pending_events_; |
142 | 135 |
143 // This is used to ensure pending tasks will not fire after this object is | 136 // This is used to ensure pending tasks will not fire after this object is |
144 // destroyed. | 137 // destroyed. |
145 base::WeakPtrFactory<GuestView> weak_ptr_factory_; | 138 base::WeakPtrFactory<GuestViewBase> weak_ptr_factory_; |
146 | 139 |
147 DISALLOW_COPY_AND_ASSIGN(GuestView); | 140 DISALLOW_COPY_AND_ASSIGN(GuestViewBase); |
148 }; | 141 }; |
149 | 142 |
150 #endif // CHROME_BROWSER_GUESTVIEW_GUESTVIEW_H_ | 143 #endif // CHROME_BROWSER_GUEST_VIEW_GUEST_VIEW_BASE_H_ |
OLD | NEW |