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

Side by Side Diff: chrome/browser/chrome_quota_permission_context.cc

Issue 8437002: Move BrowserThread to content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: A few updates. Created 9 years, 1 month 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 | Annotate | Revision Log
OLDNEW
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/task.h" 10 #include "base/task.h"
11 #include "base/utf_string_conversions.h" 11 #include "base/utf_string_conversions.h"
12 #include "chrome/browser/infobars/infobar_tab_helper.h" 12 #include "chrome/browser/infobars/infobar_tab_helper.h"
13 #include "chrome/browser/prefs/pref_service.h" 13 #include "chrome/browser/prefs/pref_service.h"
14 #include "chrome/browser/profiles/profile.h" 14 #include "chrome/browser/profiles/profile.h"
15 #include "chrome/browser/tab_contents/confirm_infobar_delegate.h" 15 #include "chrome/browser/tab_contents/confirm_infobar_delegate.h"
16 #include "chrome/browser/tab_contents/tab_util.h" 16 #include "chrome/browser/tab_contents/tab_util.h"
17 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" 17 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
18 #include "chrome/common/pref_names.h" 18 #include "chrome/common/pref_names.h"
19 #include "content/browser/tab_contents/navigation_details.h" 19 #include "content/browser/tab_contents/navigation_details.h"
20 #include "content/public/browser/browser_thread.h" 20 #include "content/public/browser/browser_thread.h"
21 #include "googleurl/src/gurl.h" 21 #include "googleurl/src/gurl.h"
22 #include "grit/generated_resources.h" 22 #include "grit/generated_resources.h"
23 #include "grit/locale_settings.h" 23 #include "grit/locale_settings.h"
24 #include "net/base/net_util.h" 24 #include "net/base/net_util.h"
25 #include "ui/base/l10n/l10n_util.h" 25 #include "ui/base/l10n/l10n_util.h"
26 #include "webkit/quota/quota_types.h" 26 #include "webkit/quota/quota_types.h"
27 27
28 using content::BrowserThread;
29
28 namespace { 30 namespace {
29 31
30 // If we requested larger quota than this threshold, show a different 32 // If we requested larger quota than this threshold, show a different
31 // message to the user. 33 // message to the user.
32 const int64 kRequestLargeQuotaThreshold = 5 * 1024 * 1024; 34 const int64 kRequestLargeQuotaThreshold = 5 * 1024 * 1024;
33 35
34 class RequestQuotaInfoBarDelegate : public ConfirmInfoBarDelegate { 36 class RequestQuotaInfoBarDelegate : public ConfirmInfoBarDelegate {
35 public: 37 public:
36 typedef QuotaPermissionContext::PermissionCallback PermissionCallback; 38 typedef QuotaPermissionContext::PermissionCallback PermissionCallback;
37 39
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 if (!BrowserThread::CurrentlyOn(BrowserThread::IO)) { 161 if (!BrowserThread::CurrentlyOn(BrowserThread::IO)) {
160 BrowserThread::PostTask( 162 BrowserThread::PostTask(
161 BrowserThread::IO, FROM_HERE, 163 BrowserThread::IO, FROM_HERE,
162 base::Bind(&ChromeQuotaPermissionContext::DispatchCallbackOnIOThread, 164 base::Bind(&ChromeQuotaPermissionContext::DispatchCallbackOnIOThread,
163 this, callback, response)); 165 this, callback, response));
164 return; 166 return;
165 } 167 }
166 168
167 callback.Run(response); 169 callback.Run(response);
168 } 170 }
OLDNEW
« no previous file with comments | « chrome/browser/chrome_plugin_service_filter.cc ('k') | chrome/browser/chrome_worker_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698