diff options
author | erikwright@chromium.org <erikwright@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-30 17:16:12 +0000 |
---|---|---|
committer | erikwright@chromium.org <erikwright@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-30 17:16:12 +0000 |
commit | 8dc2405798db63428fa62d2affb1cf640783c388 (patch) | |
tree | f1e65f4cc31b256762273b89a59cc4f891d0a0e4 /chrome/common/service_process_util.h | |
parent | 70bf7b88499950447de229233d9aebaa99aa38b9 (diff) | |
download | chromium_src-8dc2405798db63428fa62d2affb1cf640783c388.zip chromium_src-8dc2405798db63428fa62d2affb1cf640783c388.tar.gz chromium_src-8dc2405798db63428fa62d2affb1cf640783c388.tar.bz2 |
Use callback_forward.h instead of callback.h where possible.
callback_forward.h will be committed separately, before this commit, and is included here only to assist in running try jobs. It will be removed before the final commit.
You are asked to review this as you have OWNERS for these files.
BUG=None
TEST=Compiles
R=ben@chromium.org
Review URL: http://codereview.chromium.org/8699008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112243 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/service_process_util.h')
-rw-r--r-- | chrome/common/service_process_util.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/service_process_util.h b/chrome/common/service_process_util.h index f9defa5..427bfcd 100644 --- a/chrome/common/service_process_util.h +++ b/chrome/common/service_process_util.h @@ -8,7 +8,7 @@ #include <string> #include "base/basictypes.h" -#include "base/callback.h" +#include "base/callback_forward.h" #include "base/memory/scoped_ptr.h" #include "base/process.h" #include "base/shared_memory.h" @@ -17,7 +17,7 @@ class CommandLine; namespace base { - class MessageLoopProxy; +class MessageLoopProxy; } // Return the IPC channel to connect to the service process. |