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

Unified Diff: chrome/browser/extensions/extension_function.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
Index: chrome/browser/extensions/extension_function.h
diff --git a/chrome/browser/extensions/extension_function.h b/chrome/browser/extensions/extension_function.h
index 3ab5139e2b8a17c1e48ea87e08a7118698ec786c..7e3cd3a5d51c4ca2c8030ddd19683634f1b2568c 100644
--- a/chrome/browser/extensions/extension_function.h
+++ b/chrome/browser/extensions/extension_function.h
@@ -225,7 +225,8 @@ class UIThreadExtensionFunction : public ExtensionFunction {
}
protected:
- friend struct BrowserThread::DeleteOnThread<BrowserThread::UI>;
+ friend struct content::BrowserThread::DeleteOnThread<
+ content::BrowserThread::UI>;
friend class DeleteTask<UIThreadExtensionFunction>;
virtual ~UIThreadExtensionFunction();
@@ -314,7 +315,8 @@ class IOThreadExtensionFunction : public ExtensionFunction {
}
protected:
- friend struct BrowserThread::DeleteOnThread<BrowserThread::IO>;
+ friend struct content::BrowserThread::DeleteOnThread<
+ content::BrowserThread::IO>;
friend class DeleteTask<IOThreadExtensionFunction>;
virtual ~IOThreadExtensionFunction();
« no previous file with comments | « chrome/browser/extensions/extension_file_browser_private_api.cc ('k') | chrome/browser/extensions/extension_function.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698