OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/prefs/pref_service.h" | 10 #include "base/prefs/pref_service.h" |
11 #include "base/utf_string_conversions.h" | 11 #include "base/utf_string_conversions.h" |
12 #include "chrome/browser/infobars/confirm_infobar_delegate.h" | 12 #include "chrome/browser/infobars/confirm_infobar_delegate.h" |
13 #include "chrome/browser/infobars/infobar_service.h" | 13 #include "chrome/browser/infobars/infobar_service.h" |
14 #include "chrome/browser/profiles/profile.h" | 14 #include "chrome/browser/profiles/profile.h" |
15 #include "chrome/browser/tab_contents/tab_util.h" | 15 #include "chrome/browser/tab_contents/tab_util.h" |
16 #include "chrome/common/pref_names.h" | 16 #include "chrome/common/pref_names.h" |
17 #include "content/public/browser/browser_thread.h" | 17 #include "content/public/browser/browser_thread.h" |
18 #include "content/public/browser/navigation_details.h" | 18 #include "content/public/browser/navigation_details.h" |
19 #include "content/public/browser/web_contents.h" | 19 #include "content/public/browser/web_contents.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/common/quota/quota_types.h" |
26 | 26 |
27 using content::BrowserThread; | 27 using content::BrowserThread; |
28 using content::QuotaPermissionContext; | 28 using content::QuotaPermissionContext; |
29 using content::WebContents; | 29 using content::WebContents; |
30 | 30 |
31 | 31 |
32 // RequestQuotaInfoBarDelegate ------------------------------------------------ | 32 // RequestQuotaInfoBarDelegate ------------------------------------------------ |
33 | 33 |
34 namespace { | 34 namespace { |
35 | 35 |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
208 BrowserThread::IO, FROM_HERE, | 208 BrowserThread::IO, FROM_HERE, |
209 base::Bind(&ChromeQuotaPermissionContext::DispatchCallbackOnIOThread, | 209 base::Bind(&ChromeQuotaPermissionContext::DispatchCallbackOnIOThread, |
210 this, callback, response)); | 210 this, callback, response)); |
211 return; | 211 return; |
212 } | 212 } |
213 | 213 |
214 callback.Run(response); | 214 callback.Run(response); |
215 } | 215 } |
216 | 216 |
217 ChromeQuotaPermissionContext::~ChromeQuotaPermissionContext() {} | 217 ChromeQuotaPermissionContext::~ChromeQuotaPermissionContext() {} |
OLD | NEW |