| OLD | NEW |
| 1 #!/bin/sh | 1 #!/bin/sh |
| 2 | 2 |
| 3 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 3 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 6 | 6 |
| 7 XAUTH=/usr/bin/xauth | 7 XAUTH=/usr/bin/xauth |
| 8 XAUTH_FILE="/var/run/chromelogin.auth" | 8 XAUTH_FILE="/var/run/chromelogin.auth" |
| 9 | 9 |
| 10 MCOOKIE=$(head -c 8 /dev/urandom | openssl md5) # speed this up? | 10 MCOOKIE=$(head -c 8 /dev/urandom | openssl md5) # speed this up? |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 exec /sbin/session_manager --uid=${USER_ID} --login -- \ | 131 exec /sbin/session_manager --uid=${USER_ID} --login -- \ |
| 132 $CHROME --enable-gview \ | 132 $CHROME --enable-gview \ |
| 133 --enable-sync \ | 133 --enable-sync \ |
| 134 --log-level=0 \ | 134 --log-level=0 \ |
| 135 --enable-logging \ | 135 --enable-logging \ |
| 136 --main-menu-url="http://welcome-cros.appspot.com/menu" \ | 136 --main-menu-url="http://welcome-cros.appspot.com/menu" \ |
| 137 --no-first-run \ | 137 --no-first-run \ |
| 138 --user-data-dir=/home/$USER \ | 138 --user-data-dir=/home/$USER \ |
| 139 --login-profile=user \ | 139 --login-profile=user \ |
| 140 --in-chrome-auth \ | 140 --in-chrome-auth \ |
| 141 » --apps-gallery-title="Web Store" \ | 141 --apps-gallery-title="Web Store" \ |
| 142 » --apps-gallery-url="http://chrome.google.com/extensions/" \ | 142 --apps-gallery-url="http://chrome.google.com/extensions/" \ |
| 143 --disable-ipv6 \ |
| 143 --enable-login-images \ | 144 --enable-login-images \ |
| 144 --scroll-pixels=2 \ | 145 --scroll-pixels=2 \ |
| 145 "${SKIP_OOBE}" \ | 146 "${SKIP_OOBE}" \ |
| 146 "${PROXY_ARGS}" \ | 147 "${PROXY_ARGS}" \ |
| 147 -- $WM_SCRIPT | 148 -- $WM_SCRIPT |
| OLD | NEW |