From 1fcfb2066570eb096964567c841f6a1bd6cb1ec5 Mon Sep 17 00:00:00 2001 From: "dpranke@chromium.org" Date: Tue, 19 Jul 2011 19:53:14 +0000 Subject: 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 --- content/browser/zygote_main_linux.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'content/browser/zygote_main_linux.cc') diff --git a/content/browser/zygote_main_linux.cc b/content/browser/zygote_main_linux.cc index 95b3975..4391807 100644 --- a/content/browser/zygote_main_linux.cc +++ b/content/browser/zygote_main_linux.cc @@ -235,7 +235,7 @@ class Zygote { // Assume that if we can't find the child in the sandbox, then // it terminated normally. status = base::TERMINATION_STATUS_NORMAL_TERMINATION; - exit_code = ResultCodes::NORMAL_EXIT; + exit_code = content::RESULT_CODE_NORMAL_EXIT; } Pickle write_pickle; -- cgit v1.1