[email protected] | 9f9749a | 2012-03-02 19:37:00 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
[email protected] | 317f96c9 | 2011-05-31 06:53:41 | [diff] [blame] | 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 "chrome/browser/chrome_quota_permission_context.h" |
| 6 | |
| 7 | #include <string> |
| 8 | |
[email protected] | c8d98dd | 2011-10-18 23:12:08 | [diff] [blame] | 9 | #include "base/bind.h" |
[email protected] | 3853a4c | 2013-02-11 17:15:57 | [diff] [blame] | 10 | #include "base/prefs/pref_service.h" |
[email protected] | 135cb80 | 2013-06-09 16:44:20 | [diff] [blame] | 11 | #include "base/strings/utf_string_conversions.h" |
[email protected] | 4a8adfa0 | 2013-03-19 22:37:46 | [diff] [blame] | 12 | #include "chrome/browser/infobars/confirm_infobar_delegate.h" |
[email protected] | 39308cb | 2013-12-06 03:01:48 | [diff] [blame] | 13 | #include "chrome/browser/infobars/infobar.h" |
[email protected] | 4a8adfa0 | 2013-03-19 22:37:46 | [diff] [blame] | 14 | #include "chrome/browser/infobars/infobar_service.h" |
[email protected] | 317f96c9 | 2011-05-31 06:53:41 | [diff] [blame] | 15 | #include "chrome/browser/profiles/profile.h" |
[email protected] | 317f96c9 | 2011-05-31 06:53:41 | [diff] [blame] | 16 | #include "chrome/browser/tab_contents/tab_util.h" |
[email protected] | c032489d | 2014-02-11 19:07:24 | [diff] [blame] | 17 | #include "chrome/browser/ui/website_settings/permission_bubble_manager.h" |
| 18 | #include "chrome/browser/ui/website_settings/permission_bubble_request.h" |
[email protected] | 317f96c9 | 2011-05-31 06:53:41 | [diff] [blame] | 19 | #include "chrome/common/pref_names.h" |
[email protected] | c38831a1 | 2011-10-28 12:44:49 | [diff] [blame] | 20 | #include "content/public/browser/browser_thread.h" |
[email protected] | 5b96836f | 2011-12-22 07:39:00 | [diff] [blame] | 21 | #include "content/public/browser/navigation_details.h" |
[email protected] | 4f822f02 | 2012-12-20 19:11:42 | [diff] [blame] | 22 | #include "content/public/browser/web_contents.h" |
[email protected] | 317f96c9 | 2011-05-31 06:53:41 | [diff] [blame] | 23 | #include "grit/generated_resources.h" |
| 24 | #include "grit/locale_settings.h" |
[email protected] | d23cdeee | 2014-03-10 06:39:53 | [diff] [blame] | 25 | #include "grit/theme_resources.h" |
[email protected] | 317f96c9 | 2011-05-31 06:53:41 | [diff] [blame] | 26 | #include "net/base/net_util.h" |
| 27 | #include "ui/base/l10n/l10n_util.h" |
[email protected] | 761fa470 | 2013-07-02 15:25:15 | [diff] [blame] | 28 | #include "url/gurl.h" |
[email protected] | 7660ec9 | 2013-05-30 05:12:39 | [diff] [blame] | 29 | #include "webkit/common/quota/quota_types.h" |
[email protected] | 317f96c9 | 2011-05-31 06:53:41 | [diff] [blame] | 30 | |
[email protected] | c032489d | 2014-02-11 19:07:24 | [diff] [blame] | 31 | namespace { |
| 32 | |
| 33 | // If the site requested larger quota than this threshold, show a different |
| 34 | // message to the user. |
| 35 | const int64 kRequestLargeQuotaThreshold = 5 * 1024 * 1024; |
| 36 | |
| 37 | // QuotaPermissionRequest --------------------------------------------- |
| 38 | |
| 39 | class QuotaPermissionRequest : public PermissionBubbleRequest { |
| 40 | public: |
| 41 | QuotaPermissionRequest( |
| 42 | ChromeQuotaPermissionContext* context, |
| 43 | const GURL& origin_url, |
| 44 | int64 requested_quota, |
[email protected] | f78aa772 | 2014-04-04 00:04:25 | [diff] [blame^] | 45 | bool user_gesture, |
[email protected] | c032489d | 2014-02-11 19:07:24 | [diff] [blame] | 46 | const std::string& display_languages, |
| 47 | const content::QuotaPermissionContext::PermissionCallback& callback); |
| 48 | |
| 49 | virtual ~QuotaPermissionRequest(); |
| 50 | |
| 51 | // PermissionBubbleRequest: |
[email protected] | d23cdeee | 2014-03-10 06:39:53 | [diff] [blame] | 52 | virtual int GetIconID() const OVERRIDE; |
[email protected] | c032489d | 2014-02-11 19:07:24 | [diff] [blame] | 53 | virtual base::string16 GetMessageText() const OVERRIDE; |
| 54 | virtual base::string16 GetMessageTextFragment() const OVERRIDE; |
[email protected] | d23cdeee | 2014-03-10 06:39:53 | [diff] [blame] | 55 | virtual bool HasUserGesture() const OVERRIDE; |
| 56 | virtual GURL GetRequestingHostname() const OVERRIDE; |
[email protected] | c032489d | 2014-02-11 19:07:24 | [diff] [blame] | 57 | virtual void PermissionGranted() OVERRIDE; |
| 58 | virtual void PermissionDenied() OVERRIDE; |
| 59 | virtual void Cancelled() OVERRIDE; |
| 60 | virtual void RequestFinished() OVERRIDE; |
| 61 | |
| 62 | private: |
| 63 | scoped_refptr<ChromeQuotaPermissionContext> context_; |
| 64 | GURL origin_url_; |
| 65 | std::string display_languages_; |
| 66 | int64 requested_quota_; |
[email protected] | f78aa772 | 2014-04-04 00:04:25 | [diff] [blame^] | 67 | bool user_gesture_; |
[email protected] | c032489d | 2014-02-11 19:07:24 | [diff] [blame] | 68 | content::QuotaPermissionContext::PermissionCallback callback_; |
| 69 | |
| 70 | DISALLOW_COPY_AND_ASSIGN(QuotaPermissionRequest); |
| 71 | }; |
| 72 | |
| 73 | QuotaPermissionRequest::QuotaPermissionRequest( |
| 74 | ChromeQuotaPermissionContext* context, |
| 75 | const GURL& origin_url, |
| 76 | int64 requested_quota, |
[email protected] | f78aa772 | 2014-04-04 00:04:25 | [diff] [blame^] | 77 | bool user_gesture, |
[email protected] | c032489d | 2014-02-11 19:07:24 | [diff] [blame] | 78 | const std::string& display_languages, |
| 79 | const content::QuotaPermissionContext::PermissionCallback& callback) |
| 80 | : context_(context), |
| 81 | origin_url_(origin_url), |
| 82 | display_languages_(display_languages), |
| 83 | requested_quota_(requested_quota), |
[email protected] | f78aa772 | 2014-04-04 00:04:25 | [diff] [blame^] | 84 | user_gesture_(user_gesture), |
[email protected] | c032489d | 2014-02-11 19:07:24 | [diff] [blame] | 85 | callback_(callback) {} |
| 86 | |
| 87 | QuotaPermissionRequest::~QuotaPermissionRequest() {} |
| 88 | |
[email protected] | d23cdeee | 2014-03-10 06:39:53 | [diff] [blame] | 89 | int QuotaPermissionRequest::GetIconID() const { |
| 90 | // TODO(gbillock): get the proper image here |
| 91 | return IDR_INFOBAR_WARNING; |
| 92 | } |
| 93 | |
[email protected] | c032489d | 2014-02-11 19:07:24 | [diff] [blame] | 94 | base::string16 QuotaPermissionRequest::GetMessageText() const { |
| 95 | return l10n_util::GetStringFUTF16( |
| 96 | (requested_quota_ > kRequestLargeQuotaThreshold ? |
| 97 | IDS_REQUEST_LARGE_QUOTA_INFOBAR_QUESTION : |
| 98 | IDS_REQUEST_QUOTA_INFOBAR_QUESTION), |
| 99 | net::FormatUrl(origin_url_, display_languages_)); |
| 100 | } |
| 101 | |
| 102 | base::string16 QuotaPermissionRequest::GetMessageTextFragment() const { |
| 103 | return l10n_util::GetStringUTF16(IDS_REQUEST_QUOTA_PERMISSION_FRAGMENT); |
| 104 | } |
| 105 | |
[email protected] | d23cdeee | 2014-03-10 06:39:53 | [diff] [blame] | 106 | bool QuotaPermissionRequest::HasUserGesture() const { |
[email protected] | f78aa772 | 2014-04-04 00:04:25 | [diff] [blame^] | 107 | return user_gesture_; |
[email protected] | c032489d | 2014-02-11 19:07:24 | [diff] [blame] | 108 | } |
| 109 | |
[email protected] | d23cdeee | 2014-03-10 06:39:53 | [diff] [blame] | 110 | GURL QuotaPermissionRequest::GetRequestingHostname() const { |
| 111 | return origin_url_; |
[email protected] | c032489d | 2014-02-11 19:07:24 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | void QuotaPermissionRequest::PermissionGranted() { |
| 115 | context_->DispatchCallbackOnIOThread( |
| 116 | callback_, |
| 117 | content::QuotaPermissionContext::QUOTA_PERMISSION_RESPONSE_ALLOW); |
| 118 | callback_ = content::QuotaPermissionContext::PermissionCallback(); |
| 119 | } |
| 120 | |
| 121 | void QuotaPermissionRequest::PermissionDenied() { |
| 122 | context_->DispatchCallbackOnIOThread( |
| 123 | callback_, |
| 124 | content::QuotaPermissionContext::QUOTA_PERMISSION_RESPONSE_DISALLOW); |
| 125 | callback_ = content::QuotaPermissionContext::PermissionCallback(); |
| 126 | } |
| 127 | |
| 128 | void QuotaPermissionRequest::Cancelled() { |
| 129 | } |
| 130 | |
| 131 | void QuotaPermissionRequest::RequestFinished() { |
| 132 | if (!callback_.is_null()) { |
| 133 | context_->DispatchCallbackOnIOThread( |
| 134 | callback_, |
| 135 | content::QuotaPermissionContext::QUOTA_PERMISSION_RESPONSE_CANCELLED); |
| 136 | } |
| 137 | |
| 138 | delete this; |
| 139 | } |
[email protected] | 631bb74 | 2011-11-02 11:29:39 | [diff] [blame] | 140 | |
[email protected] | 49c71ac | 2013-05-03 01:36:22 | [diff] [blame] | 141 | |
| 142 | // RequestQuotaInfoBarDelegate ------------------------------------------------ |
| 143 | |
[email protected] | 317f96c9 | 2011-05-31 06:53:41 | [diff] [blame] | 144 | class RequestQuotaInfoBarDelegate : public ConfirmInfoBarDelegate { |
| 145 | public: |
[email protected] | 39308cb | 2013-12-06 03:01:48 | [diff] [blame] | 146 | // Creates a request quota infobar and delegate and adds the infobar to |
| 147 | // |infobar_service|. |
[email protected] | 0be0993 | 2013-01-08 02:03:50 | [diff] [blame] | 148 | static void Create( |
| 149 | InfoBarService* infobar_service, |
| 150 | ChromeQuotaPermissionContext* context, |
| 151 | const GURL& origin_url, |
| 152 | int64 requested_quota, |
| 153 | const std::string& display_languages, |
[email protected] | 9a88ea99 | 2013-07-10 21:21:57 | [diff] [blame] | 154 | const content::QuotaPermissionContext::PermissionCallback& callback); |
[email protected] | 0be0993 | 2013-01-08 02:03:50 | [diff] [blame] | 155 | |
| 156 | private: |
[email protected] | 317f96c9 | 2011-05-31 06:53:41 | [diff] [blame] | 157 | RequestQuotaInfoBarDelegate( |
[email protected] | 317f96c9 | 2011-05-31 06:53:41 | [diff] [blame] | 158 | ChromeQuotaPermissionContext* context, |
| 159 | const GURL& origin_url, |
| 160 | int64 requested_quota, |
| 161 | const std::string& display_languages, |
[email protected] | 9a88ea99 | 2013-07-10 21:21:57 | [diff] [blame] | 162 | const content::QuotaPermissionContext::PermissionCallback& callback); |
[email protected] | 49c71ac | 2013-05-03 01:36:22 | [diff] [blame] | 163 | virtual ~RequestQuotaInfoBarDelegate(); |
[email protected] | 317f96c9 | 2011-05-31 06:53:41 | [diff] [blame] | 164 | |
[email protected] | 49c71ac | 2013-05-03 01:36:22 | [diff] [blame] | 165 | // ConfirmInfoBarDelegate: |
[email protected] | 38eb497 | 2013-01-07 18:35:05 | [diff] [blame] | 166 | virtual bool ShouldExpireInternal( |
[email protected] | 49c71ac | 2013-05-03 01:36:22 | [diff] [blame] | 167 | const content::LoadCommittedDetails& details) const OVERRIDE; |
[email protected] | 9692015 | 2013-12-04 21:00:16 | [diff] [blame] | 168 | virtual base::string16 GetMessageText() const OVERRIDE; |
[email protected] | 317f96c9 | 2011-05-31 06:53:41 | [diff] [blame] | 169 | virtual bool Accept() OVERRIDE; |
| 170 | virtual bool Cancel() OVERRIDE; |
| 171 | |
| 172 | scoped_refptr<ChromeQuotaPermissionContext> context_; |
| 173 | GURL origin_url_; |
| 174 | std::string display_languages_; |
| 175 | int64 requested_quota_; |
[email protected] | 9a88ea99 | 2013-07-10 21:21:57 | [diff] [blame] | 176 | content::QuotaPermissionContext::PermissionCallback callback_; |
[email protected] | 49c71ac | 2013-05-03 01:36:22 | [diff] [blame] | 177 | |
[email protected] | 317f96c9 | 2011-05-31 06:53:41 | [diff] [blame] | 178 | DISALLOW_COPY_AND_ASSIGN(RequestQuotaInfoBarDelegate); |
| 179 | }; |
| 180 | |
[email protected] | 0be0993 | 2013-01-08 02:03:50 | [diff] [blame] | 181 | // static |
| 182 | void RequestQuotaInfoBarDelegate::Create( |
| 183 | InfoBarService* infobar_service, |
| 184 | ChromeQuotaPermissionContext* context, |
| 185 | const GURL& origin_url, |
| 186 | int64 requested_quota, |
| 187 | const std::string& display_languages, |
[email protected] | 9a88ea99 | 2013-07-10 21:21:57 | [diff] [blame] | 188 | const content::QuotaPermissionContext::PermissionCallback& callback) { |
[email protected] | 39308cb | 2013-12-06 03:01:48 | [diff] [blame] | 189 | infobar_service->AddInfoBar(ConfirmInfoBarDelegate::CreateInfoBar( |
| 190 | scoped_ptr<ConfirmInfoBarDelegate>(new RequestQuotaInfoBarDelegate( |
| 191 | context, origin_url, requested_quota, display_languages, callback)))); |
[email protected] | 0be0993 | 2013-01-08 02:03:50 | [diff] [blame] | 192 | } |
| 193 | |
[email protected] | 49c71ac | 2013-05-03 01:36:22 | [diff] [blame] | 194 | RequestQuotaInfoBarDelegate::RequestQuotaInfoBarDelegate( |
[email protected] | 49c71ac | 2013-05-03 01:36:22 | [diff] [blame] | 195 | ChromeQuotaPermissionContext* context, |
| 196 | const GURL& origin_url, |
| 197 | int64 requested_quota, |
| 198 | const std::string& display_languages, |
[email protected] | 9a88ea99 | 2013-07-10 21:21:57 | [diff] [blame] | 199 | const content::QuotaPermissionContext::PermissionCallback& callback) |
[email protected] | 39308cb | 2013-12-06 03:01:48 | [diff] [blame] | 200 | : ConfirmInfoBarDelegate(), |
[email protected] | 49c71ac | 2013-05-03 01:36:22 | [diff] [blame] | 201 | context_(context), |
| 202 | origin_url_(origin_url), |
| 203 | display_languages_(display_languages), |
| 204 | requested_quota_(requested_quota), |
| 205 | callback_(callback) { |
| 206 | } |
| 207 | |
| 208 | RequestQuotaInfoBarDelegate::~RequestQuotaInfoBarDelegate() { |
| 209 | if (!callback_.is_null()) { |
| 210 | context_->DispatchCallbackOnIOThread( |
| 211 | callback_, |
[email protected] | 9a88ea99 | 2013-07-10 21:21:57 | [diff] [blame] | 212 | content::QuotaPermissionContext::QUOTA_PERMISSION_RESPONSE_CANCELLED); |
[email protected] | 49c71ac | 2013-05-03 01:36:22 | [diff] [blame] | 213 | } |
| 214 | } |
| 215 | |
| 216 | bool RequestQuotaInfoBarDelegate::ShouldExpireInternal( |
| 217 | const content::LoadCommittedDetails& details) const { |
| 218 | return false; |
| 219 | } |
| 220 | |
[email protected] | 6a72a63 | 2013-12-12 22:22:00 | [diff] [blame] | 221 | base::string16 RequestQuotaInfoBarDelegate::GetMessageText() const { |
[email protected] | 9a88ea99 | 2013-07-10 21:21:57 | [diff] [blame] | 222 | // If the site requested larger quota than this threshold, show a different |
| 223 | // message to the user. |
[email protected] | 317f96c9 | 2011-05-31 06:53:41 | [diff] [blame] | 224 | return l10n_util::GetStringFUTF16( |
| 225 | (requested_quota_ > kRequestLargeQuotaThreshold ? |
| 226 | IDS_REQUEST_LARGE_QUOTA_INFOBAR_QUESTION : |
| 227 | IDS_REQUEST_QUOTA_INFOBAR_QUESTION), |
| 228 | net::FormatUrl(origin_url_, display_languages_)); |
| 229 | } |
| 230 | |
| 231 | bool RequestQuotaInfoBarDelegate::Accept() { |
| 232 | context_->DispatchCallbackOnIOThread( |
[email protected] | 9f9749a | 2012-03-02 19:37:00 | [diff] [blame] | 233 | callback_, |
[email protected] | 9a88ea99 | 2013-07-10 21:21:57 | [diff] [blame] | 234 | content::QuotaPermissionContext::QUOTA_PERMISSION_RESPONSE_ALLOW); |
[email protected] | 317f96c9 | 2011-05-31 06:53:41 | [diff] [blame] | 235 | return true; |
| 236 | } |
| 237 | |
| 238 | bool RequestQuotaInfoBarDelegate::Cancel() { |
| 239 | context_->DispatchCallbackOnIOThread( |
[email protected] | 9f9749a | 2012-03-02 19:37:00 | [diff] [blame] | 240 | callback_, |
[email protected] | 9a88ea99 | 2013-07-10 21:21:57 | [diff] [blame] | 241 | content::QuotaPermissionContext::QUOTA_PERMISSION_RESPONSE_CANCELLED); |
[email protected] | 317f96c9 | 2011-05-31 06:53:41 | [diff] [blame] | 242 | return true; |
| 243 | } |
| 244 | |
[email protected] | 49c71ac | 2013-05-03 01:36:22 | [diff] [blame] | 245 | } // namespace |
| 246 | |
| 247 | |
| 248 | // ChromeQuotaPermissionContext ----------------------------------------------- |
[email protected] | 317f96c9 | 2011-05-31 06:53:41 | [diff] [blame] | 249 | |
[email protected] | 9a88ea99 | 2013-07-10 21:21:57 | [diff] [blame] | 250 | ChromeQuotaPermissionContext::ChromeQuotaPermissionContext() { |
| 251 | } |
[email protected] | 317f96c9 | 2011-05-31 06:53:41 | [diff] [blame] | 252 | |
| 253 | void ChromeQuotaPermissionContext::RequestQuotaPermission( |
[email protected] | f78aa772 | 2014-04-04 00:04:25 | [diff] [blame^] | 254 | const content::StorageQuotaParams& params, |
[email protected] | 317f96c9 | 2011-05-31 06:53:41 | [diff] [blame] | 255 | int render_process_id, |
[email protected] | c8d98dd | 2011-10-18 23:12:08 | [diff] [blame] | 256 | const PermissionCallback& callback) { |
[email protected] | f78aa772 | 2014-04-04 00:04:25 | [diff] [blame^] | 257 | if (params.storage_type != quota::kStorageTypePersistent) { |
[email protected] | 317f96c9 | 2011-05-31 06:53:41 | [diff] [blame] | 258 | // For now we only support requesting quota with this interface |
| 259 | // for Persistent storage type. |
[email protected] | 9f9749a | 2012-03-02 19:37:00 | [diff] [blame] | 260 | callback.Run(QUOTA_PERMISSION_RESPONSE_DISALLOW); |
[email protected] | 317f96c9 | 2011-05-31 06:53:41 | [diff] [blame] | 261 | return; |
| 262 | } |
| 263 | |
[email protected] | 9a88ea99 | 2013-07-10 21:21:57 | [diff] [blame] | 264 | if (!content::BrowserThread::CurrentlyOn(content::BrowserThread::UI)) { |
| 265 | content::BrowserThread::PostTask( |
| 266 | content::BrowserThread::UI, FROM_HERE, |
[email protected] | 1c6bfbb | 2011-11-30 04:36:14 | [diff] [blame] | 267 | base::Bind(&ChromeQuotaPermissionContext::RequestQuotaPermission, this, |
[email protected] | f78aa772 | 2014-04-04 00:04:25 | [diff] [blame^] | 268 | params, render_process_id, callback)); |
[email protected] | 317f96c9 | 2011-05-31 06:53:41 | [diff] [blame] | 269 | return; |
| 270 | } |
| 271 | |
[email protected] | 9a88ea99 | 2013-07-10 21:21:57 | [diff] [blame] | 272 | content::WebContents* web_contents = |
[email protected] | f78aa772 | 2014-04-04 00:04:25 | [diff] [blame^] | 273 | tab_util::GetWebContentsByID(render_process_id, |
| 274 | params.render_view_id); |
[email protected] | 83ff91c | 2012-01-05 20:54:13 | [diff] [blame] | 275 | if (!web_contents) { |
[email protected] | 317f96c9 | 2011-05-31 06:53:41 | [diff] [blame] | 276 | // The tab may have gone away or the request may not be from a tab. |
| 277 | LOG(WARNING) << "Attempt to request quota tabless renderer: " |
[email protected] | f78aa772 | 2014-04-04 00:04:25 | [diff] [blame^] | 278 | << render_process_id << "," << params.render_view_id; |
[email protected] | 9f9749a | 2012-03-02 19:37:00 | [diff] [blame] | 279 | DispatchCallbackOnIOThread(callback, QUOTA_PERMISSION_RESPONSE_CANCELLED); |
[email protected] | 317f96c9 | 2011-05-31 06:53:41 | [diff] [blame] | 280 | return; |
| 281 | } |
| 282 | |
[email protected] | c032489d | 2014-02-11 19:07:24 | [diff] [blame] | 283 | if (PermissionBubbleManager::Enabled()) { |
| 284 | PermissionBubbleManager* bubble_manager = |
| 285 | PermissionBubbleManager::FromWebContents(web_contents); |
| 286 | bubble_manager->AddRequest(new QuotaPermissionRequest(this, |
[email protected] | f78aa772 | 2014-04-04 00:04:25 | [diff] [blame^] | 287 | params.origin_url, params.requested_size, params.user_gesture, |
[email protected] | c032489d | 2014-02-11 19:07:24 | [diff] [blame] | 288 | Profile::FromBrowserContext(web_contents->GetBrowserContext())-> |
| 289 | GetPrefs()->GetString(prefs::kAcceptLanguages), |
| 290 | callback)); |
| 291 | return; |
| 292 | } |
| 293 | |
[email protected] | 4f822f02 | 2012-12-20 19:11:42 | [diff] [blame] | 294 | InfoBarService* infobar_service = |
| 295 | InfoBarService::FromWebContents(web_contents); |
| 296 | if (!infobar_service) { |
| 297 | // The tab has no infobar service. |
[email protected] | 17f2adb | 2012-07-22 15:43:40 | [diff] [blame] | 298 | LOG(WARNING) << "Attempt to request quota from a background page: " |
[email protected] | f78aa772 | 2014-04-04 00:04:25 | [diff] [blame^] | 299 | << render_process_id << "," << params.render_view_id; |
[email protected] | 17f2adb | 2012-07-22 15:43:40 | [diff] [blame] | 300 | DispatchCallbackOnIOThread(callback, QUOTA_PERMISSION_RESPONSE_CANCELLED); |
| 301 | return; |
| 302 | } |
[email protected] | 0be0993 | 2013-01-08 02:03:50 | [diff] [blame] | 303 | RequestQuotaInfoBarDelegate::Create( |
[email protected] | f78aa772 | 2014-04-04 00:04:25 | [diff] [blame^] | 304 | infobar_service, this, params.origin_url, params.requested_size, |
[email protected] | 9a88ea99 | 2013-07-10 21:21:57 | [diff] [blame] | 305 | Profile::FromBrowserContext(web_contents->GetBrowserContext())-> |
| 306 | GetPrefs()->GetString(prefs::kAcceptLanguages), |
[email protected] | 0be0993 | 2013-01-08 02:03:50 | [diff] [blame] | 307 | callback); |
[email protected] | 317f96c9 | 2011-05-31 06:53:41 | [diff] [blame] | 308 | } |
| 309 | |
| 310 | void ChromeQuotaPermissionContext::DispatchCallbackOnIOThread( |
[email protected] | c8d98dd | 2011-10-18 23:12:08 | [diff] [blame] | 311 | const PermissionCallback& callback, |
[email protected] | 9f9749a | 2012-03-02 19:37:00 | [diff] [blame] | 312 | QuotaPermissionResponse response) { |
[email protected] | c8d98dd | 2011-10-18 23:12:08 | [diff] [blame] | 313 | DCHECK_EQ(false, callback.is_null()); |
| 314 | |
[email protected] | 9a88ea99 | 2013-07-10 21:21:57 | [diff] [blame] | 315 | if (!content::BrowserThread::CurrentlyOn(content::BrowserThread::IO)) { |
| 316 | content::BrowserThread::PostTask( |
| 317 | content::BrowserThread::IO, FROM_HERE, |
[email protected] | c8d98dd | 2011-10-18 23:12:08 | [diff] [blame] | 318 | base::Bind(&ChromeQuotaPermissionContext::DispatchCallbackOnIOThread, |
| 319 | this, callback, response)); |
[email protected] | 317f96c9 | 2011-05-31 06:53:41 | [diff] [blame] | 320 | return; |
| 321 | } |
[email protected] | c8d98dd | 2011-10-18 23:12:08 | [diff] [blame] | 322 | |
| 323 | callback.Run(response); |
[email protected] | 317f96c9 | 2011-05-31 06:53:41 | [diff] [blame] | 324 | } |
[email protected] | 649d1c0 | 2012-04-27 02:56:21 | [diff] [blame] | 325 | |
| 326 | ChromeQuotaPermissionContext::~ChromeQuotaPermissionContext() {} |