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

Unified Diff: content/browser/chrome_blob_storage_context.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 | « content/browser/child_process_launcher.cc ('k') | content/browser/chrome_blob_storage_context.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/chrome_blob_storage_context.h
diff --git a/content/browser/chrome_blob_storage_context.h b/content/browser/chrome_blob_storage_context.h
index 8375833e68e5326074af358e39d16ba8d0c4564c..02fa3d114e45818e53082e5e329da6bed6c6dbd4 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();
« no previous file with comments | « content/browser/child_process_launcher.cc ('k') | content/browser/chrome_blob_storage_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698