| 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 CHROME_LOG_DIR = '/var/log/chrome' |
| 7 USER_DATA_DIR = '/home/chronos' | 8 USER_DATA_DIR = '/home/chronos' |
| 8 | 9 |
| 9 LOGIN_PROFILE = USER_DATA_DIR+'/Default' | 10 LOGIN_PROFILE = USER_DATA_DIR+'/Default' |
| 10 | 11 |
| 11 # TODO(fes): With the switch to ecryptfs, the cryptohome device is no longer | 12 # TODO(fes): With the switch to ecryptfs, the cryptohome device is no longer |
| 12 # static--it includes a system-specific hash of the username whose vault is | 13 # static--it includes a system-specific hash of the username whose vault is |
| 13 # mounted. seano points out that this is no longer a constant, and we may want | 14 # mounted. seano points out that this is no longer a constant, and we may want |
| 14 # to change the way tests dependent on this value work. | 15 # to change the way tests dependent on this value work. |
| 15 CRYPTOHOME_DEVICE_REGEX = r'^/home/\.shadow/.*/vault$' | 16 CRYPTOHOME_DEVICE_REGEX = r'^/home/\.shadow/.*/vault$' |
| 16 CRYPTOHOME_INCOGNITO = 'guestfs' | 17 CRYPTOHOME_INCOGNITO = 'guestfs' |
| (...skipping 18 matching lines...) Expand all Loading... |
| 35 '$default': ['performance.test.account@gmail.com', 'perfsmurf'], | 36 '$default': ['performance.test.account@gmail.com', 'perfsmurf'], |
| 36 '$backdoor': ['chronos@gmail.com', 'chronos'], | 37 '$backdoor': ['chronos@gmail.com', 'chronos'], |
| 37 } | 38 } |
| 38 | 39 |
| 39 CLIENT_LOGIN_URL = '/accounts/ClientLogin' | 40 CLIENT_LOGIN_URL = '/accounts/ClientLogin' |
| 40 ISSUE_AUTH_TOKEN_URL = '/accounts/IssueAuthToken' | 41 ISSUE_AUTH_TOKEN_URL = '/accounts/IssueAuthToken' |
| 41 TOKEN_AUTH_URL = '/accounts/TokenAuth' | 42 TOKEN_AUTH_URL = '/accounts/TokenAuth' |
| 42 | 43 |
| 43 LOGIN_SERVICE = 'gaia' | 44 LOGIN_SERVICE = 'gaia' |
| 44 LOGIN_ERROR = 'Error=BadAuthentication' | 45 LOGIN_ERROR = 'Error=BadAuthentication' |
| OLD | NEW |