| 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 USER_DATA_DIR = '/home/chronos' | 7 USER_DATA_DIR = '/home/chronos' |
| 8 | 8 |
| 9 LOGIN_PROFILE = USER_DATA_DIR+'/Default' | 9 LOGIN_PROFILE = USER_DATA_DIR+'/Default' |
| 10 | 10 |
| 11 CRYPTOHOME_DEVICE = '/dev/mapper/cryptohome' | 11 CRYPTOHOME_DEVICE = '/dev/mapper/cryptohome' |
| 12 CRYPTOHOME_MOUNT_PT = USER_DATA_DIR+'/user' | 12 CRYPTOHOME_MOUNT_PT = USER_DATA_DIR+'/user' |
| 13 | 13 |
| 14 BROWSER = 'chrome' | 14 BROWSER = 'chrome' |
| 15 | 15 |
| 16 WINDOW_MANAGER = 'chromeos-wm' | 16 WINDOW_MANAGER = 'chromeos-wm' |
| 17 | 17 |
| 18 LOGGED_IN_MAGIC_FILE = '/var/run/state/logged-in' | 18 LOGGED_IN_MAGIC_FILE = '/var/run/state/logged-in' |
| 19 | 19 |
| 20 CHROME_WINDOW_MAPPED_MAGIC_FILE = \ |
| 21 '/var/run/state/windowmanager/initial-chrome-window-mapped' |
| 22 |
| 20 DISABLE_BROWSER_RESTART_MAGIC_FILE = '/tmp/disable_chrome_restart' | 23 DISABLE_BROWSER_RESTART_MAGIC_FILE = '/tmp/disable_chrome_restart' |
| OLD | NEW |