diff options
author | dpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-19 19:53:14 +0000 |
---|---|---|
committer | dpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-19 19:53:14 +0000 |
commit | 1fcfb2066570eb096964567c841f6a1bd6cb1ec5 (patch) | |
tree | 5cac121ea9daa9436903e6c30902ed9c49033e32 /chrome/service | |
parent | b0dee8a4fb85517e0b57daf343293f945796940d (diff) | |
download | chromium_src-1fcfb2066570eb096964567c841f6a1bd6cb1ec5.zip chromium_src-1fcfb2066570eb096964567c841f6a1bd6cb1ec5.tar.gz chromium_src-1fcfb2066570eb096964567c841f6a1bd6cb1ec5.tar.bz2 |
Take two at splitting result codes between content and chrome.
content/common/result_codes.h contains only the codes defined in content. chrome/common/chrome_result_codes.h contains the codes defined in chrome and also includes (for convenience) the content header.
R=jam@chromium.org
BUG=76699
TEST=everything compiles
Review URL: http://codereview.chromium.org/7397004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93082 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/service')
-rw-r--r-- | chrome/service/service_child_process_host.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/service/service_child_process_host.cc b/chrome/service/service_child_process_host.cc index d111e90..e25dd59 100644 --- a/chrome/service/service_child_process_host.cc +++ b/chrome/service/service_child_process_host.cc @@ -21,7 +21,7 @@ ServiceChildProcessHost::ServiceChildProcessHost(ProcessType type) ServiceChildProcessHost::~ServiceChildProcessHost() { // We need to kill the child process when the host dies. - base::KillProcess(handle(), ResultCodes::NORMAL_EXIT, false); + base::KillProcess(handle(), content::RESULT_CODE_NORMAL_EXIT, false); } bool ServiceChildProcessHost::Launch(CommandLine* cmd_line, |