| 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 1014 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1025 | 1025 |
| 1026 // Specifies the user which is already logged in. | 1026 // Specifies the user which is already logged in. |
| 1027 const char kLoginUser[] = "login-user"; | 1027 const char kLoginUser[] = "login-user"; |
| 1028 | 1028 |
| 1029 // Use the frame layout used in chromeos. | 1029 // Use the frame layout used in chromeos. |
| 1030 const char kChromeosFrame[] = "chromeos-frame"; | 1030 const char kChromeosFrame[] = "chromeos-frame"; |
| 1031 | 1031 |
| 1032 // Set logging output to the given file. | 1032 // Set logging output to the given file. |
| 1033 const char kChromeosLogToFile[] = "logtofile"; | 1033 const char kChromeosLogToFile[] = "logtofile"; |
| 1034 | 1034 |
| 1035 // Specify startup customization manifest. | |
| 1036 // TODO(denisromanov): delete this when not needed for testing. | |
| 1037 const char kStartupManifest[] = "startup-manifest"; | |
| 1038 | |
| 1039 // Specify services customization manifest. | |
| 1040 // TODO(denisromanov): delete this when not needed for testing. | |
| 1041 const char kServicesManifest[] = "services-manifest"; | |
| 1042 | |
| 1043 #endif | 1035 #endif |
| 1044 | 1036 |
| 1045 #if defined(OS_LINUX) | 1037 #if defined(OS_LINUX) |
| 1046 // Specify the amount the trackpad should scroll by. | 1038 // Specify the amount the trackpad should scroll by. |
| 1047 const char kScrollPixels[] = "scroll-pixels"; | 1039 const char kScrollPixels[] = "scroll-pixels"; |
| 1048 #endif | 1040 #endif |
| 1049 | 1041 |
| 1050 #if defined(OS_MACOSX) || defined(OS_WIN) | 1042 #if defined(OS_MACOSX) || defined(OS_WIN) |
| 1051 // Use the system SSL library (Secure Transport on Mac, SChannel on Windows) | 1043 // Use the system SSL library (Secure Transport on Mac, SChannel on Windows) |
| 1052 // instead of NSS for SSL. | 1044 // instead of NSS for SSL. |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1126 | 1118 |
| 1127 // ----------------------------------------------------------------------------- | 1119 // ----------------------------------------------------------------------------- |
| 1128 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1120 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1129 // | 1121 // |
| 1130 // You were going to just dump your switches here, weren't you? Instead, | 1122 // You were going to just dump your switches here, weren't you? Instead, |
| 1131 // please put them in alphabetical order above, or in order inside the | 1123 // please put them in alphabetical order above, or in order inside the |
| 1132 // appropriate ifdef at the bottom. The order should match the header. | 1124 // appropriate ifdef at the bottom. The order should match the header. |
| 1133 // ----------------------------------------------------------------------------- | 1125 // ----------------------------------------------------------------------------- |
| 1134 | 1126 |
| 1135 } // namespace switches | 1127 } // namespace switches |
| OLD | NEW |