| 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 1001 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1012 | 1012 |
| 1013 // Specifies the user which is already logged in. | 1013 // Specifies the user which is already logged in. |
| 1014 const char kLoginUser[] = "login-user"; | 1014 const char kLoginUser[] = "login-user"; |
| 1015 | 1015 |
| 1016 // Use the frame layout used in chromeos. | 1016 // Use the frame layout used in chromeos. |
| 1017 const char kChromeosFrame[] = "chromeos-frame"; | 1017 const char kChromeosFrame[] = "chromeos-frame"; |
| 1018 | 1018 |
| 1019 // Set logging output to the given file. | 1019 // Set logging output to the given file. |
| 1020 const char kChromeosLogToFile[] = "logtofile"; | 1020 const char kChromeosLogToFile[] = "logtofile"; |
| 1021 | 1021 |
| 1022 // Specify startup customization manifest. | |
| 1023 // TODO(denisromanov): delete this when not needed for testing. | |
| 1024 const char kStartupManifest[] = "startup-manifest"; | |
| 1025 | |
| 1026 // Specify services customization manifest. | |
| 1027 // TODO(denisromanov): delete this when not needed for testing. | |
| 1028 const char kServicesManifest[] = "services-manifest"; | |
| 1029 | |
| 1030 #endif | 1022 #endif |
| 1031 | 1023 |
| 1032 #if defined(OS_LINUX) | 1024 #if defined(OS_LINUX) |
| 1033 // Specify the amount the trackpad should scroll by. | 1025 // Specify the amount the trackpad should scroll by. |
| 1034 const char kScrollPixels[] = "scroll-pixels"; | 1026 const char kScrollPixels[] = "scroll-pixels"; |
| 1035 #endif | 1027 #endif |
| 1036 | 1028 |
| 1037 #if defined(OS_MACOSX) || defined(OS_WIN) | 1029 #if defined(OS_MACOSX) || defined(OS_WIN) |
| 1038 // Use the system SSL library (Secure Transport on Mac, SChannel on Windows) | 1030 // Use the system SSL library (Secure Transport on Mac, SChannel on Windows) |
| 1039 // instead of NSS for SSL. | 1031 // instead of NSS for SSL. |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1113 | 1105 |
| 1114 // ----------------------------------------------------------------------------- | 1106 // ----------------------------------------------------------------------------- |
| 1115 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1107 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1116 // | 1108 // |
| 1117 // You were going to just dump your switches here, weren't you? Instead, | 1109 // You were going to just dump your switches here, weren't you? Instead, |
| 1118 // please put them in alphabetical order above, or in order inside the | 1110 // please put them in alphabetical order above, or in order inside the |
| 1119 // appropriate ifdef at the bottom. The order should match the header. | 1111 // appropriate ifdef at the bottom. The order should match the header. |
| 1120 // ----------------------------------------------------------------------------- | 1112 // ----------------------------------------------------------------------------- |
| 1121 | 1113 |
| 1122 } // namespace switches | 1114 } // namespace switches |
| OLD | NEW |