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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 | 51 |
52 SESSION_MANAGER = 'session_manager' | 52 SESSION_MANAGER = 'session_manager' |
53 SIGNED_PREFERENCES_FILE = WHITELIST_DIR+'/preferences' | 53 SIGNED_PREFERENCES_FILE = WHITELIST_DIR+'/preferences' |
54 | 54 |
55 TOKEN_AUTH_URL = '/accounts/TokenAuth' | 55 TOKEN_AUTH_URL = '/accounts/TokenAuth' |
56 | 56 |
57 UI_LOG = '/var/log/ui/ui.LATEST' | 57 UI_LOG = '/var/log/ui/ui.LATEST' |
58 UPDATE_ENGINE_LOG = '/var/log/update_engine.log' | 58 UPDATE_ENGINE_LOG = '/var/log/update_engine.log' |
59 | 59 |
60 WINDOW_MANAGER = 'chromeos-wm' | 60 WINDOW_MANAGER = 'chromeos-wm' |
OLD | NEW |