diff options
author | dpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-15 20:07:08 +0000 |
---|---|---|
committer | dpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-15 20:07:08 +0000 |
commit | 785c9672b5f4e423487147904930110dae0049d9 (patch) | |
tree | c4fef8478f128c7a6aa3d49db9e8d6eb50432bbc /content/browser/zygote_main_linux.cc | |
parent | 6bff761d7589fc7b638de6f1ce684f559711316b (diff) | |
download | chromium_src-785c9672b5f4e423487147904930110dae0049d9.zip chromium_src-785c9672b5f4e423487147904930110dae0049d9.tar.gz chromium_src-785c9672b5f4e423487147904930110dae0049d9.tar.bz2 |
This change will split the result codes between content and chrome.
This adds a new file into chrome/common and does a lot of renaming.
The current version is just a sketch of the headers, and nothing will
compile.
R=jam@chromium.org
BUG=76699
TEST=everything still compiles and runs
Review URL: http://codereview.chromium.org/7377010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92730 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/zygote_main_linux.cc')
-rw-r--r-- | content/browser/zygote_main_linux.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/browser/zygote_main_linux.cc b/content/browser/zygote_main_linux.cc index 99a7735..25d2051 100644 --- a/content/browser/zygote_main_linux.cc +++ b/content/browser/zygote_main_linux.cc @@ -231,7 +231,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; |