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

Unified Diff: chrome/browser/extensions/extension_function.h

Issue 9015021: Remove DeleteTask and convert remaining users. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix last Linux gotchas (upload attempt #2) Created 9 years 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 | « chrome/browser/extensions/extension_data_deleter.h ('k') | chrome/browser/extensions/extension_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_function.h
diff --git a/chrome/browser/extensions/extension_function.h b/chrome/browser/extensions/extension_function.h
index d99c4871b4460c2346f47a8b47e28e2fad00871d..503d29fc17a96e19fdef8302adc50a8cf0bd0825 100644
--- a/chrome/browser/extensions/extension_function.h
+++ b/chrome/browser/extensions/extension_function.h
@@ -13,6 +13,7 @@
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/weak_ptr.h"
+#include "base/message_loop_helpers.h"
#include "base/process.h"
#include "chrome/browser/extensions/extension_info_map.h"
#include "chrome/common/extensions/extension.h"
@@ -247,7 +248,7 @@ class UIThreadExtensionFunction : public ExtensionFunction {
protected:
friend struct content::BrowserThread::DeleteOnThread<
content::BrowserThread::UI>;
- friend class DeleteTask<UIThreadExtensionFunction>;
+ friend class base::DeleteHelper<UIThreadExtensionFunction>;
virtual ~UIThreadExtensionFunction();
@@ -349,7 +350,7 @@ class IOThreadExtensionFunction : public ExtensionFunction {
protected:
friend struct content::BrowserThread::DeleteOnThread<
content::BrowserThread::IO>;
- friend class DeleteTask<IOThreadExtensionFunction>;
+ friend class base::DeleteHelper<IOThreadExtensionFunction>;
virtual ~IOThreadExtensionFunction();
« no previous file with comments | « chrome/browser/extensions/extension_data_deleter.h ('k') | chrome/browser/extensions/extension_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698