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/chrome_blob_storage_context.h | |
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/chrome_blob_storage_context.h')
-rw-r--r-- | content/browser/chrome_blob_storage_context.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/content/browser/chrome_blob_storage_context.h b/content/browser/chrome_blob_storage_context.h index 8375833..02fa3d1 100644 --- a/content/browser/chrome_blob_storage_context.h +++ b/content/browser/chrome_blob_storage_context.h @@ -25,8 +25,8 @@ class BlobStorageController; // All methods, except the ctor, are expected to be called on // the IO thread (unless specifically called out in doc comments). class CONTENT_EXPORT ChromeBlobStorageContext - : public base::RefCountedThreadSafe<ChromeBlobStorageContext, - BrowserThread::DeleteOnIOThread> { + : public base::RefCountedThreadSafe< + ChromeBlobStorageContext, content::BrowserThread::DeleteOnIOThread> { public: ChromeBlobStorageContext(); @@ -37,9 +37,9 @@ class CONTENT_EXPORT ChromeBlobStorageContext } private: - friend class base::RefCountedThreadSafe<ChromeBlobStorageContext, - BrowserThread::DeleteOnIOThread>; - friend class BrowserThread; + friend class base::RefCountedThreadSafe< + ChromeBlobStorageContext, content::BrowserThread::DeleteOnIOThread>; + friend class content::BrowserThread; friend class DeleteTask<ChromeBlobStorageContext>; virtual ~ChromeBlobStorageContext(); |