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

Unified Diff: chrome/browser/ui/webui/quota_internals_proxy.h

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, 2 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/webui/print_preview_handler.cc ('k') | chrome/browser/ui/webui/quota_internals_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/quota_internals_proxy.h
diff --git a/chrome/browser/ui/webui/quota_internals_proxy.h b/chrome/browser/ui/webui/quota_internals_proxy.h
index 7eca9a5f6c9605dab460da69e3674a4f0b1ea0bc..97e51cfc9083988d3a856201ca52617b89cfe9b0 100644
--- a/chrome/browser/ui/webui/quota_internals_proxy.h
+++ b/chrome/browser/ui/webui/quota_internals_proxy.h
@@ -29,8 +29,9 @@ typedef std::map<std::string, std::string> Statistics;
// Each QuotaInternalsHandler instances creates and owns a instance of this
// class.
class QuotaInternalsProxy
- : public base::RefCountedThreadSafe<QuotaInternalsProxy,
- BrowserThread::DeleteOnIOThread> {
+ : public base::RefCountedThreadSafe<
+ QuotaInternalsProxy,
+ content::BrowserThread::DeleteOnIOThread> {
public:
explicit QuotaInternalsProxy(QuotaInternalsHandler* handler);
~QuotaInternalsProxy();
@@ -77,7 +78,8 @@ class QuotaInternalsProxy
std::vector<PerHostStorageInfo> report_pending_;
friend class QuotaInternalsHandler;
- friend struct BrowserThread::DeleteOnThread<BrowserThread::IO>;
+ friend struct content::BrowserThread::DeleteOnThread<
+ content::BrowserThread::IO>;
friend class DeleteTask<QuotaInternalsProxy>;
DISALLOW_COPY_AND_ASSIGN(QuotaInternalsProxy);
« no previous file with comments | « chrome/browser/ui/webui/print_preview_handler.cc ('k') | chrome/browser/ui/webui/quota_internals_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698