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

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

Issue 1320153002: Add new termination status for failed launch (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_CHROME_RESULT_CODES_H_ 5 #ifndef CHROME_COMMON_CHROME_RESULT_CODES_H_
6 #define CHROME_COMMON_CHROME_RESULT_CODES_H_ 6 #define CHROME_COMMON_CHROME_RESULT_CODES_H_
7 7
8 #include "content/public/common/result_codes.h" 8 #include "content/public/common/result_codes.h"
9 9
10 namespace chrome { 10 namespace chrome {
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 // Failed to migrate user data directory for side-by-side package support 90 // Failed to migrate user data directory for side-by-side package support
91 // (Linux-only). 91 // (Linux-only).
92 RESULT_CODE_SXS_MIGRATION_FAILED, 92 RESULT_CODE_SXS_MIGRATION_FAILED,
93 93
94 // The action is not allowed by a policy. 94 // The action is not allowed by a policy.
95 RESULT_CODE_ACTION_DISALLOWED_BY_POLICY, 95 RESULT_CODE_ACTION_DISALLOWED_BY_POLICY,
96 96
97 // An browser process was sandboxed. This should never happen. 97 // An browser process was sandboxed. This should never happen.
98 RESULT_CODE_INVALID_SANDBOX_STATE, 98 RESULT_CODE_INVALID_SANDBOX_STATE,
99 99
100 // A pseudo exit code to indicate that renderer process failed to start.
101 RESULT_CODE_RENDERER_PROCESS_START_FAILURE,
102
100 // Last return code (keep this last). 103 // Last return code (keep this last).
101 RESULT_CODE_CHROME_LAST_CODE, 104 RESULT_CODE_CHROME_LAST_CODE,
102 }; 105 };
103 106
104 } // namespace chrome 107 } // namespace chrome
105 108
106 #endif // CHROME_COMMON_CHROME_RESULT_CODES_H_ 109 #endif // CHROME_COMMON_CHROME_RESULT_CODES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698