1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
  | 
// 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.
#ifndef CHROME_COMMON_CHROME_RESULT_CODES_H_
#define CHROME_COMMON_CHROME_RESULT_CODES_H_
#pragma once
#include "content/common/result_codes.h"
namespace chrome {
enum ResultCode {
  RESULT_CODE_CHROME_START = content::RESULT_CODE_LAST_CODE,
  // An invalid command line url was given.
  RESULT_CODE_INVALID_CMDLINE_URL = RESULT_CODE_CHROME_START,
  // The process is of an unknown type.
  RESULT_CODE_BAD_PROCESS_TYPE,
  // A critical chrome file is missing.
  RESULT_CODE_MISSING_DATA,
  // Failed to make Chrome default browser (not used?).
  RESULT_CODE_SHELL_INTEGRATION_FAILED,
  // Machine level install exists
  RESULT_CODE_MACHINE_LEVEL_INSTALL_EXISTS,
  // Uninstall detected another chrome instance.
  RESULT_CODE_UNINSTALL_CHROME_ALIVE,
  // The user changed their mind.
  RESULT_CODE_UNINSTALL_USER_CANCEL,
  // Delete profile as well during uninstall.
  RESULT_CODE_UNINSTALL_DELETE_PROFILE,
  // Command line parameter is not supported.
  RESULT_CODE_UNSUPPORTED_PARAM,
  // Browser import hung and was killed.
  RESULT_CODE_IMPORTER_HUNG,
  // Trying to restart the browser we crashed.
  RESULT_CODE_RESPAWN_FAILED,
  // The EXP1, EXP2, EXP3, EXP4 are generic codes used to communicate some
  // simple outcome back to the process that launched us. This is used for
  // experiments and the actual meaning depends on the experiment.
  // (only EXP2 is used?)
  RESULT_CODE_NORMAL_EXIT_EXP1,
  RESULT_CODE_NORMAL_EXIT_EXP2,
  RESULT_CODE_NORMAL_EXIT_EXP3,
  RESULT_CODE_NORMAL_EXIT_EXP4,
  // For experiments this return code means that the user canceled causes the
  // did_run "dr" signal to be reset soi this chrome run does not count as
  // active chrome usage.
  RESULT_CODE_NORMAL_EXIT_CANCEL,
  // The profile was in use on another host.
  RESULT_CODE_PROFILE_IN_USE,
  // Failed to pack an extension via the cmd line.
  RESULT_CODE_PACK_EXTENSION_ERROR,
  // Failed to silently uninstall an extension.
  RESULT_CODE_UNINSTALL_EXTENSION_ERROR,
  // Last return code (keep this last).
  RESULT_CODE_CHROME_LAST_CODE,
};
}  // namespace chrome
#endif  // CHROME_COMMON_CHROME_RESULT_CODES_H_
  |