diff options
author | joi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-02 11:29:39 +0000 |
---|---|---|
committer | joi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-02 11:29:39 +0000 |
commit | 631bb742a2798549af691af7357236ce0899b4cb (patch) | |
tree | 1852356dc787a9c65e892ea1a57dfc03595d2bb4 /content/browser/appcache | |
parent | e301da283ab61ff78a108d5ed3246d8b09614ef2 (diff) | |
download | chromium_src-631bb742a2798549af691af7357236ce0899b4cb.zip chromium_src-631bb742a2798549af691af7357236ce0899b4cb.tar.gz chromium_src-631bb742a2798549af691af7357236ce0899b4cb.tar.bz2 |
Move BrowserThread to content namespace.
TBR=owners
BUG=98716
Review URL: http://codereview.chromium.org/8437002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@108270 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/appcache')
-rw-r--r-- | content/browser/appcache/chrome_appcache_service.cc | 2 | ||||
-rw-r--r-- | content/browser/appcache/chrome_appcache_service.h | 11 | ||||
-rw-r--r-- | content/browser/appcache/chrome_appcache_service_unittest.cc | 1 |
3 files changed, 9 insertions, 5 deletions
diff --git a/content/browser/appcache/chrome_appcache_service.cc b/content/browser/appcache/chrome_appcache_service.cc index 08336ada..82d1f42 100644 --- a/content/browser/appcache/chrome_appcache_service.cc +++ b/content/browser/appcache/chrome_appcache_service.cc @@ -12,6 +12,8 @@ #include "net/base/net_errors.h" #include "webkit/quota/quota_manager.h" +using content::BrowserThread; + ChromeAppCacheService::ChromeAppCacheService( quota::QuotaManagerProxy* quota_manager_proxy) : AppCacheService(quota_manager_proxy), diff --git a/content/browser/appcache/chrome_appcache_service.h b/content/browser/appcache/chrome_appcache_service.h index c941297..3717dc1 100644 --- a/content/browser/appcache/chrome_appcache_service.h +++ b/content/browser/appcache/chrome_appcache_service.h @@ -34,8 +34,8 @@ class ResourceContext; // TODO(dpranke): Fix dependencies on AppCacheService so that we don't have // to worry about clients calling AppCacheService methods. class CONTENT_EXPORT ChromeAppCacheService - : public base::RefCountedThreadSafe<ChromeAppCacheService, - BrowserThread::DeleteOnIOThread>, + : public base::RefCountedThreadSafe< + ChromeAppCacheService, content::BrowserThread::DeleteOnIOThread>, NON_EXPORTED_BASE(public appcache::AppCacheService), NON_EXPORTED_BASE(public appcache::AppCachePolicy), public content::NotificationObserver { @@ -48,9 +48,10 @@ class CONTENT_EXPORT ChromeAppCacheService scoped_refptr<quota::SpecialStoragePolicy> special_storage_policy); private: - friend class base::RefCountedThreadSafe<ChromeAppCacheService, - BrowserThread::DeleteOnIOThread>; - friend class BrowserThread; + friend class base::RefCountedThreadSafe< + ChromeAppCacheService, + content::BrowserThread::DeleteOnIOThread>; + friend class content::BrowserThread; friend class DeleteTask<ChromeAppCacheService>; virtual ~ChromeAppCacheService(); diff --git a/content/browser/appcache/chrome_appcache_service_unittest.cc b/content/browser/appcache/chrome_appcache_service_unittest.cc index bb1cb9b..174d613 100644 --- a/content/browser/appcache/chrome_appcache_service_unittest.cc +++ b/content/browser/appcache/chrome_appcache_service_unittest.cc @@ -16,6 +16,7 @@ #include <set> +using content::BrowserThread; using content::BrowserThreadImpl; namespace { |