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 /chrome/app/chrome_exe_main_win.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 'chrome/app/chrome_exe_main_win.cc')
-rw-r--r-- | chrome/app/chrome_exe_main_win.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/app/chrome_exe_main_win.cc b/chrome/app/chrome_exe_main_win.cc index 28c0da4..f1f54eb 100644 --- a/chrome/app/chrome_exe_main_win.cc +++ b/chrome/app/chrome_exe_main_win.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -25,7 +25,7 @@ int APIENTRY wWinMain(HINSTANCE instance, HINSTANCE, wchar_t*, int) { // We restarted because of a previous crash. Ask user if we should relaunch. if (ShowRestartDialogIfCrashed(&exit_now)) { if (exit_now) - return ResultCodes::NORMAL_EXIT; + return content::RESULT_CODE_NORMAL_EXIT; } // Initialize the commandline singleton from the environment. |