Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(394)

Side by Side Diff: chrome/common/result_codes.h

Issue 62097: On uninstall ask whether to delete profile. (Closed)
Patch Set: run message loop. Created 11 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_COMMON_RESULT_CODES_H_ 5 #ifndef CHROME_COMMON_RESULT_CODES_H_
6 #define CHROME_COMMON_RESULT_CODES_H_ 6 #define CHROME_COMMON_RESULT_CODES_H_
7 7
8 #include "base/process_util.h" 8 #include "base/process_util.h"
9 9
10 // This file consolidates all the return codes for the browser and renderer 10 // This file consolidates all the return codes for the browser and renderer
(...skipping 18 matching lines...) Expand all
29 GOOGLE_UPDATE_LAUNCH_FAILED,// Google Update could not launch chrome DLL. 29 GOOGLE_UPDATE_LAUNCH_FAILED,// Google Update could not launch chrome DLL.
30 BAD_PROCESS_TYPE, // The process is of an unknown type. 30 BAD_PROCESS_TYPE, // The process is of an unknown type.
31 MISSING_PATH, // An critical chrome path is missing. 31 MISSING_PATH, // An critical chrome path is missing.
32 MISSING_DATA, // A critical chrome file is missing. 32 MISSING_DATA, // A critical chrome file is missing.
33 SHELL_INTEGRATION_FAILED, // Failed to make Chrome default browser. 33 SHELL_INTEGRATION_FAILED, // Failed to make Chrome default browser.
34 MACHINE_LEVEL_INSTALL_EXISTS, // Machine level install exists 34 MACHINE_LEVEL_INSTALL_EXISTS, // Machine level install exists
35 UNINSTALL_DELETE_FILE_ERROR,// Error while deleting shortcuts. 35 UNINSTALL_DELETE_FILE_ERROR,// Error while deleting shortcuts.
36 UNINSTALL_CHROME_ALIVE, // Uninstall detected another chrome instance. 36 UNINSTALL_CHROME_ALIVE, // Uninstall detected another chrome instance.
37 UNINSTALL_NO_SURVEY, // Do not launch survey after uninstall. 37 UNINSTALL_NO_SURVEY, // Do not launch survey after uninstall.
38 UNINSTALL_USER_CANCEL, // The user changed her mind. 38 UNINSTALL_USER_CANCEL, // The user changed her mind.
39 UNINSTALL_DELETE_PROFILE, // Delete profile as well during uninstall.
39 UNSUPPORTED_PARAM, // Command line parameter is not supported. 40 UNSUPPORTED_PARAM, // Command line parameter is not supported.
40 KILLED_BAD_MESSAGE, // A bad message caused the process termination. 41 KILLED_BAD_MESSAGE, // A bad message caused the process termination.
41 IMPORTER_CANCEL, // The user canceled the browser import. 42 IMPORTER_CANCEL, // The user canceled the browser import.
42 IMPORTER_HUNG, // Browser import hung and was killed. 43 IMPORTER_HUNG, // Browser import hung and was killed.
43 EXIT_LAST_CODE // Last return code (keep it last). 44 EXIT_LAST_CODE // Last return code (keep it last).
44 }; 45 };
45 }; 46 };
46 47
47 #endif // CHROME_COMMON_RESULT_CODES_H_ 48 #endif // CHROME_COMMON_RESULT_CODES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698