| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium 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 #include "chrome/common/chrome_switches.h" | 5 #include "chrome/common/chrome_switches.h" |
| 6 | 6 |
| 7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 | 9 |
| 10 namespace switches { | 10 namespace switches { |
| (...skipping 882 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 893 const char kProfile[] = "profile"; | 893 const char kProfile[] = "profile"; |
| 894 | 894 |
| 895 // Specifies the profile to use once a chromeos user is logged in. | 895 // Specifies the profile to use once a chromeos user is logged in. |
| 896 const char kLoginProfile[] = "login-profile"; | 896 const char kLoginProfile[] = "login-profile"; |
| 897 | 897 |
| 898 // Specifies the user which is already logged in. | 898 // Specifies the user which is already logged in. |
| 899 const char kLoginUser[] = "login-user"; | 899 const char kLoginUser[] = "login-user"; |
| 900 | 900 |
| 901 // Use the frame layout used in chromeos. | 901 // Use the frame layout used in chromeos. |
| 902 const char kChromeosFrame[] = "chromeos-frame"; | 902 const char kChromeosFrame[] = "chromeos-frame"; |
| 903 |
| 904 // Specify startup customization manifest. |
| 905 // TODO(denisromanov): delete this once it's not needed for testing anymore. |
| 906 const char kStartupManifest[] = "startup-manifest"; |
| 907 |
| 903 #endif | 908 #endif |
| 904 | 909 |
| 905 #if defined(OS_WIN) | 910 #if defined(OS_WIN) |
| 906 // Use SChannel (the system SSL library on Windows) instead of NSS for SSL. | 911 // Use SChannel (the system SSL library on Windows) instead of NSS for SSL. |
| 907 const char kUseSChannel[] = "use-schannel"; | 912 const char kUseSChannel[] = "use-schannel"; |
| 908 #endif | 913 #endif |
| 909 | 914 |
| 910 #if defined(OS_POSIX) | 915 #if defined(OS_POSIX) |
| 911 // Bypass the error dialog when the profile lock couldn't be attained. | 916 // Bypass the error dialog when the profile lock couldn't be attained. |
| 912 // A flag, generated internally by Chrome for renderer and other helper process | 917 // A flag, generated internally by Chrome for renderer and other helper process |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 975 | 980 |
| 976 // ----------------------------------------------------------------------------- | 981 // ----------------------------------------------------------------------------- |
| 977 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 982 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 978 // | 983 // |
| 979 // You were going to just dump your switches here, weren't you? Instead, | 984 // You were going to just dump your switches here, weren't you? Instead, |
| 980 // please put them in alphabetical order above, or in order inside the | 985 // please put them in alphabetical order above, or in order inside the |
| 981 // appropriate ifdef at the bottom. The order should match the header. | 986 // appropriate ifdef at the bottom. The order should match the header. |
| 982 // ----------------------------------------------------------------------------- | 987 // ----------------------------------------------------------------------------- |
| 983 | 988 |
| 984 } // namespace switches | 989 } // namespace switches |
| OLD | NEW |