| 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();
|
|
|