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

Side by Side Diff: chrome/browser/media/protected_media_identifier_permission_context.cc

Issue 769103002: Refactor ProtectedMediaIdentifierPermissionContext to derive from PermissionContextBase. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: apply comments, fix compile Created 6 years 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #include "chrome/browser/media/protected_media_identifier_permission_context.h" 5 #include "chrome/browser/media/protected_media_identifier_permission_context.h"
6 6
7 #include <functional>
8 #include <string>
9 #include <vector>
10
11 #include "base/bind.h" 7 #include "base/bind.h"
12 #include "base/prefs/pref_service.h" 8 #include "base/prefs/pref_service.h"
13 #include "base/strings/utf_string_conversions.h" 9 #include "base/strings/utf_string_conversions.h"
14 #include "chrome/browser/content_settings/tab_specific_content_settings.h" 10 #include "chrome/browser/content_settings/tab_specific_content_settings.h"
15 #include "chrome/browser/profiles/profile.h" 11 #include "chrome/browser/profiles/profile.h"
16 #include "chrome/browser/tab_contents/tab_util.h" 12 #include "chrome/browser/tab_contents/tab_util.h"
17 #include "chrome/common/pref_names.h" 13 #include "chrome/common/pref_names.h"
18 #include "components/content_settings/core/browser/host_content_settings_map.h" 14 #include "components/content_settings/core/browser/host_content_settings_map.h"
19 #include "components/content_settings/core/common/permission_request_id.h" 15 #include "components/content_settings/core/common/permission_request_id.h"
20 #include "content/public/browser/browser_thread.h" 16 #include "content/public/browser/browser_thread.h"
21 #include "content/public/browser/render_process_host.h"
22 #include "content/public/browser/render_view_host.h"
23 #include "content/public/browser/web_contents.h" 17 #include "content/public/browser/web_contents.h"
24 18
25 #if defined(ENABLE_EXTENSIONS) 19 #if defined(ENABLE_EXTENSIONS)
26 #include "chrome/browser/extensions/extension_service.h" 20 #include "chrome/browser/extensions/extension_service.h"
27 #include "extensions/browser/extension_system.h" 21 #include "extensions/browser/extension_system.h"
28 #include "extensions/browser/suggest_permission_util.h" 22 #include "extensions/browser/suggest_permission_util.h"
29 #include "extensions/browser/view_type_utils.h" 23 #include "extensions/browser/view_type_utils.h"
30 #include "extensions/common/extension.h" 24 #include "extensions/common/extension.h"
31 25
32 using extensions::APIPermission; 26 using extensions::APIPermission;
33 #endif 27 #endif
34 28
35 ProtectedMediaIdentifierPermissionContext:: 29 ProtectedMediaIdentifierPermissionContext::
36 ProtectedMediaIdentifierPermissionContext(Profile* profile) 30 ProtectedMediaIdentifierPermissionContext(Profile* profile)
37 : profile_(profile), shutting_down_(false) {} 31 : PermissionContextBase(profile,
32 CONTENT_SETTINGS_TYPE_PROTECTED_MEDIA_IDENTIFIER) {
33 }
38 34
39 ProtectedMediaIdentifierPermissionContext:: 35 ProtectedMediaIdentifierPermissionContext::
40 ~ProtectedMediaIdentifierPermissionContext() { 36 ~ProtectedMediaIdentifierPermissionContext() {
41 // ProtectedMediaIdentifierPermissionContext may be destroyed on either
42 // the UI thread or the IO thread, but the PermissionQueueController must have
43 // been destroyed on the UI thread.
44 DCHECK(!permission_queue_controller_.get());
45 } 37 }
46 38
47 void ProtectedMediaIdentifierPermissionContext:: 39 void ProtectedMediaIdentifierPermissionContext::RequestPermission(
48 RequestProtectedMediaIdentifierPermission( 40 content::WebContents* web_contents,
49 content::WebContents* web_contents, 41 const PermissionRequestID& id,
50 const GURL& origin, 42 const GURL& requesting_frame_origin,
51 base::Callback<void(bool)> result_callback) { 43 bool user_gesture,
52 DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI)); 44 const BrowserPermissionCallback& callback) {
53 if (shutting_down_) 45 DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
54 return;
55 46
56 int render_process_id = web_contents->GetRenderProcessHost()->GetID(); 47 GURL embedder = web_contents->GetLastCommittedURL().GetOrigin();
57 int render_view_id = web_contents->GetRenderViewHost()->GetRoutingID();
58
59 const PermissionRequestID id(
60 render_process_id, render_view_id, 0, origin);
61 48
62 #if defined(ENABLE_EXTENSIONS) 49 #if defined(ENABLE_EXTENSIONS)
Miguel Garcia 2014/12/03 18:57:36 Is this really needed? I thought protected media o
timvolodine 2014/12/04 17:22:26 don't know. kkimlabs@ : any ideas on this?
timvolodine 2014/12/04 17:24:39 Protected media is not android-only, from what I c
63 if (extensions::GetViewType(web_contents) != 50 if (extensions::GetViewType(web_contents) !=
64 extensions::VIEW_TYPE_TAB_CONTENTS) { 51 extensions::VIEW_TYPE_TAB_CONTENTS) {
65 // The tab may have gone away, or the request may not be from a tab at all. 52 // The tab may have gone away, or the request may not be from a tab at all.
66 LOG(WARNING) 53 LOG(WARNING)
67 << "Attempt to use protected media identifier in tabless renderer: " 54 << "Attempt to use protected media identifier in tabless renderer: "
68 << id.ToString() 55 << id.ToString()
69 << " (can't prompt user without a visible tab)"; 56 << " (can't prompt user without a visible tab)";
70 NotifyPermissionSet(id, origin, result_callback, false); 57 NotifyPermissionSet(id, origin, embedder, callback, false, false);
71 return; 58 return;
72 } 59 }
73 #endif 60 #endif
74 61
75 GURL embedder = web_contents->GetLastCommittedURL(); 62 if (!requesting_frame_origin.is_valid() || !embedder.is_valid()) {
Miguel Garcia 2014/12/03 18:57:37 It seems to me that this could go in the base clas
timvolodine 2014/12/04 17:22:26 it probably can, we have something similar in geol
76 if (!origin.is_valid() || !embedder.is_valid()) {
77 LOG(WARNING) 63 LOG(WARNING)
78 << "Attempt to use protected media identifier from an invalid URL: " 64 << "Attempt to use protected media identifier from an invalid URL: "
79 << origin << "," << embedder 65 << requesting_frame_origin << "," << embedder
80 << " (proteced media identifier is not supported in popups)"; 66 << " (proteced media identifier is not supported in popups)";
81 NotifyPermissionSet(id, origin, result_callback, false); 67 NotifyPermissionSet(id, requesting_frame_origin, embedder,
68 callback, false, false);
82 return; 69 return;
83 } 70 }
84 71
85 content::RenderViewHost* rvh = web_contents->GetRenderViewHost();
86 DecidePermission(id, origin, embedder, rvh, result_callback);
87 }
88
89 void ProtectedMediaIdentifierPermissionContext::
90 CancelProtectedMediaIdentifierPermissionRequests(
91 int render_process_id,
92 int render_view_id,
93 const GURL& origin) {
94 CancelPendingInfobarRequests(
95 render_process_id, render_view_id, origin);
96 }
97
98 void ProtectedMediaIdentifierPermissionContext::DecidePermission(
99 const PermissionRequestID& id,
100 const GURL& origin,
101 const GURL& embedder,
102 content::RenderViewHost* rvh,
103 const base::Callback<void(bool)>& callback) {
104 DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
105
106 #if defined(OS_ANDROID) 72 #if defined(OS_ANDROID)
107 // Check if the protected media identifier master switch is disabled. 73 // Check if the protected media identifier master switch is disabled.
108 if (!profile()->GetPrefs()->GetBoolean( 74 if (!profile()->GetPrefs()->GetBoolean(
109 prefs::kProtectedMediaIdentifierEnabled)) { 75 prefs::kProtectedMediaIdentifierEnabled)) {
Miguel Garcia 2014/12/03 18:57:36 so while you are at it you can probably remove thi
timvolodine 2014/12/04 17:22:26 ok I'll check with the author (think it's kkimlabs
timvolodine 2014/12/04 17:24:39 We cannot drop this switch, it is used to allow us
110 PermissionDecided(id, origin, embedder, callback, false); 76 NotifyPermissionSet(id, requesting_frame_origin, embedder, callback,
77 false, false);
111 return; 78 return;
112 } 79 }
113 #endif 80 #endif
114 81
115 ContentSetting content_setting = 82 PermissionContextBase::RequestPermission(web_contents, id,
116 profile_->GetHostContentSettingsMap()->GetContentSetting( 83 requesting_frame_origin,
117 origin, 84 user_gesture,
118 embedder, 85 callback);
119 CONTENT_SETTINGS_TYPE_PROTECTED_MEDIA_IDENTIFIER,
120 std::string());
121 switch (content_setting) {
122 case CONTENT_SETTING_BLOCK:
123 PermissionDecided(id, origin, embedder, callback, false);
124 break;
125 case CONTENT_SETTING_ALLOW:
126 PermissionDecided(id, origin, embedder, callback, true);
127 break;
128 case CONTENT_SETTING_ASK:
129 QueueController()->CreateInfoBarRequest(
130 id,
131 origin,
132 embedder,
133 base::Bind(&ProtectedMediaIdentifierPermissionContext::
134 NotifyPermissionSet,
135 base::Unretained(this),
136 id,
137 origin,
138 callback));
139 break;
140 default:
141 NOTREACHED();
142 }
143 } 86 }
144 87
145 void ProtectedMediaIdentifierPermissionContext::ShutdownOnUIThread() { 88 void ProtectedMediaIdentifierPermissionContext::UpdateTabContext(
146 DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
147 permission_queue_controller_.reset();
148 shutting_down_ = true;
149 }
150
151 void ProtectedMediaIdentifierPermissionContext::PermissionDecided(
152 const PermissionRequestID& id, 89 const PermissionRequestID& id,
153 const GURL& origin, 90 const GURL& requesting_frame,
154 const GURL& embedder,
155 const base::Callback<void(bool)>& callback,
156 bool allowed) { 91 bool allowed) {
157 NotifyPermissionSet(id, origin, callback, allowed); 92 DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
158 }
159
160 void ProtectedMediaIdentifierPermissionContext::NotifyPermissionSet(
161 const PermissionRequestID& id,
162 const GURL& origin,
163 const base::Callback<void(bool)>& callback,
164 bool allowed) {
165 DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
166 93
167 // WebContents may have gone away. 94 // WebContents may have gone away.
168 TabSpecificContentSettings* content_settings = 95 TabSpecificContentSettings* content_settings =
169 TabSpecificContentSettings::Get(id.render_process_id(), 96 TabSpecificContentSettings::Get(id.render_process_id(),
170 id.render_view_id()); 97 id.render_view_id());
171 if (content_settings) { 98 if (content_settings) {
172 content_settings->OnProtectedMediaIdentifierPermissionSet( 99 content_settings->OnProtectedMediaIdentifierPermissionSet(
173 origin.GetOrigin(), allowed); 100 requesting_frame.GetOrigin(), allowed);
174 } 101 }
175 102
176 callback.Run(allowed);
177 } 103 }
178
179 PermissionQueueController*
180 ProtectedMediaIdentifierPermissionContext::QueueController() {
181 DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
182 DCHECK(!shutting_down_);
183 if (!permission_queue_controller_)
184 permission_queue_controller_.reset(CreateQueueController());
185 return permission_queue_controller_.get();
186 }
187
188 PermissionQueueController*
189 ProtectedMediaIdentifierPermissionContext::CreateQueueController() {
190 DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
191 return new PermissionQueueController(
192 profile(), CONTENT_SETTINGS_TYPE_PROTECTED_MEDIA_IDENTIFIER);
193 }
194
195 void
196 ProtectedMediaIdentifierPermissionContext::CancelPendingInfobarRequests(
197 int render_process_id,
198 int render_view_id,
199 const GURL& origin) {
200 if (!content::BrowserThread::CurrentlyOn(content::BrowserThread::UI)) {
201 content::BrowserThread::PostTask(
202 content::BrowserThread::UI,
203 FROM_HERE,
204 base::Bind(&ProtectedMediaIdentifierPermissionContext::
205 CancelPendingInfobarRequests,
206 this,
207 render_process_id,
208 render_view_id,
209 origin));
210 return;
211 }
212 DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
213 if (shutting_down_)
214 return;
215 QueueController()->CancelInfoBarRequest(
216 PermissionRequestID(render_process_id, render_view_id, 0,
217 origin));
218 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698