OLD | NEW |
1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 1 # Copyright (c) 2010 The Chromium OS 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 # The names of expected mount-points, devices, magic files, etc on chrome os. | 5 # The names of expected mount-points, devices, magic files, etc on chrome os. |
6 | 6 |
7 # Constants used by other constants. | 7 # Constants used by other constants. |
8 USER_DATA_DIR = '/home/chronos' | 8 USER_DATA_DIR = '/home/chronos' |
9 WHITELIST_DIR = '/var/lib/whitelist' | 9 WHITELIST_DIR = '/var/lib/whitelist' |
10 | 10 |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 LOGIN_ERROR = 'Error=BadAuthentication' | 50 LOGIN_ERROR = 'Error=BadAuthentication' |
51 LOGIN_PROMPT_READY_MAGIC_FILE = '/tmp/uptime-login-prompt-ready' | 51 LOGIN_PROMPT_READY_MAGIC_FILE = '/tmp/uptime-login-prompt-ready' |
52 LOGIN_TRUST_ROOTS = '/etc/login_trust_root.pem' | 52 LOGIN_TRUST_ROOTS = '/etc/login_trust_root.pem' |
53 | 53 |
54 ISSUE_AUTH_TOKEN_URL = '/accounts/IssueAuthToken' | 54 ISSUE_AUTH_TOKEN_URL = '/accounts/IssueAuthToken' |
55 | 55 |
56 OWNER_KEY_FILE = WHITELIST_DIR+'/owner.key' | 56 OWNER_KEY_FILE = WHITELIST_DIR+'/owner.key' |
57 | 57 |
58 SESSION_MANAGER = 'session_manager' | 58 SESSION_MANAGER = 'session_manager' |
59 SESSION_MANAGER_LOG = '/var/log/session_manager' | 59 SESSION_MANAGER_LOG = '/var/log/session_manager' |
60 SIGNED_PREFERENCES_FILE = WHITELIST_DIR+'/preferences' | 60 SIGNED_PREFERENCES_FILE = WHITELIST_DIR + '/preferences' |
| 61 SIGNED_POLICY_FILE = WHITELIST_DIR + '/policy' |
61 SPECIAL_CASE_DOMAIN = 'gmail.com' | 62 SPECIAL_CASE_DOMAIN = 'gmail.com' |
62 | 63 |
63 TOKEN_AUTH_URL = '/accounts/TokenAuth' | 64 TOKEN_AUTH_URL = '/accounts/TokenAuth' |
64 | 65 |
65 UI_LOG = '/var/log/ui/ui.LATEST' | 66 UI_LOG = '/var/log/ui/ui.LATEST' |
66 UPDATE_ENGINE_LOG = '/var/log/update_engine.log' | 67 UPDATE_ENGINE_LOG = '/var/log/update_engine.log' |
67 | 68 |
68 WINDOW_MANAGER = 'chromeos-wm' | 69 WINDOW_MANAGER = 'chromeos-wm' |
OLD | NEW |