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

Unified Diff: base/callback_internal.h

Issue 6714032: Move some files in base to base/memory. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: only base Created 9 years, 9 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: base/callback_internal.h
diff --git a/base/callback_internal.h b/base/callback_internal.h
index 4f1d3c346bfbd7ddd5695ed1f6f5d06482050ce5..6ad96aa3871095547fde56750e52bb9b70cd2aef 100644
--- a/base/callback_internal.h
+++ b/base/callback_internal.h
@@ -9,7 +9,7 @@
#define BASE_CALLBACK_INTERNAL_H_
#pragma once
-#include "base/ref_counted.h"
+#include "base/memory/ref_counted.h"
namespace base {
namespace internal {
@@ -20,7 +20,8 @@ namespace internal {
// DoInvoke function to perform the function execution. This allows
// us to shield the Callback class from the types of the bound argument via
// "type erasure."
-class InvokerStorageBase : public RefCountedThreadSafe<InvokerStorageBase> {
+class InvokerStorageBase
brettw 2011/03/24 20:37:30 This change probably isn't necessary any more
+ : public RefCountedThreadSafe<InvokerStorageBase> {
protected:
friend class RefCountedThreadSafe<InvokerStorageBase>;
virtual ~InvokerStorageBase() {}

Powered by Google App Engine
This is Rietveld 408576698