OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/chrome_quota_permission_context.h" | 5 #include "chrome/browser/chrome_quota_permission_context.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/utf_string_conversions.h" | 10 #include "base/utf_string_conversions.h" |
11 #include "chrome/browser/infobars/infobar_tab_helper.h" | 11 #include "chrome/browser/infobars/infobar_tab_helper.h" |
12 #include "chrome/browser/prefs/pref_service.h" | 12 #include "chrome/browser/prefs/pref_service.h" |
13 #include "chrome/browser/profiles/profile.h" | 13 #include "chrome/browser/profiles/profile.h" |
14 #include "chrome/browser/tab_contents/confirm_infobar_delegate.h" | 14 #include "chrome/browser/tab_contents/confirm_infobar_delegate.h" |
15 #include "chrome/browser/tab_contents/tab_util.h" | 15 #include "chrome/browser/tab_contents/tab_util.h" |
16 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" | 16 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" |
17 #include "chrome/common/pref_names.h" | 17 #include "chrome/common/pref_names.h" |
18 #include "content/public/browser/browser_thread.h" | 18 #include "content/public/browser/browser_thread.h" |
19 #include "content/public/browser/navigation_details.h" | 19 #include "content/public/browser/navigation_details.h" |
20 #include "googleurl/src/gurl.h" | 20 #include "googleurl/src/gurl.h" |
21 #include "grit/generated_resources.h" | 21 #include "grit/generated_resources.h" |
22 #include "grit/locale_settings.h" | 22 #include "grit/locale_settings.h" |
23 #include "net/base/net_util.h" | 23 #include "net/base/net_util.h" |
24 #include "ui/base/l10n/l10n_util.h" | 24 #include "ui/base/l10n/l10n_util.h" |
25 #include "webkit/quota/quota_types.h" | 25 #include "webkit/quota/quota_types.h" |
26 | 26 |
27 using content::BrowserThread; | 27 using content::BrowserThread; |
| 28 using content::QuotaPermissionContext; |
28 using content::WebContents; | 29 using content::WebContents; |
29 | 30 |
30 namespace { | 31 namespace { |
31 | 32 |
32 // If we requested larger quota than this threshold, show a different | 33 // If we requested larger quota than this threshold, show a different |
33 // message to the user. | 34 // message to the user. |
34 const int64 kRequestLargeQuotaThreshold = 5 * 1024 * 1024; | 35 const int64 kRequestLargeQuotaThreshold = 5 * 1024 * 1024; |
35 | 36 |
36 class RequestQuotaInfoBarDelegate : public ConfirmInfoBarDelegate { | 37 class RequestQuotaInfoBarDelegate : public ConfirmInfoBarDelegate { |
37 public: | 38 public: |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 if (!BrowserThread::CurrentlyOn(BrowserThread::IO)) { | 161 if (!BrowserThread::CurrentlyOn(BrowserThread::IO)) { |
161 BrowserThread::PostTask( | 162 BrowserThread::PostTask( |
162 BrowserThread::IO, FROM_HERE, | 163 BrowserThread::IO, FROM_HERE, |
163 base::Bind(&ChromeQuotaPermissionContext::DispatchCallbackOnIOThread, | 164 base::Bind(&ChromeQuotaPermissionContext::DispatchCallbackOnIOThread, |
164 this, callback, response)); | 165 this, callback, response)); |
165 return; | 166 return; |
166 } | 167 } |
167 | 168 |
168 callback.Run(response); | 169 callback.Run(response); |
169 } | 170 } |
OLD | NEW |