| 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 1019 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1030 const char kChromeosLogToFile[] = "logtofile"; | 1030 const char kChromeosLogToFile[] = "logtofile"; |
| 1031 | 1031 |
| 1032 // Specify startup customization manifest. | 1032 // Specify startup customization manifest. |
| 1033 // TODO(denisromanov): delete this when not needed for testing. | 1033 // TODO(denisromanov): delete this when not needed for testing. |
| 1034 const char kStartupManifest[] = "startup-manifest"; | 1034 const char kStartupManifest[] = "startup-manifest"; |
| 1035 | 1035 |
| 1036 // Specify services customization manifest. | 1036 // Specify services customization manifest. |
| 1037 // TODO(denisromanov): delete this when not needed for testing. | 1037 // TODO(denisromanov): delete this when not needed for testing. |
| 1038 const char kServicesManifest[] = "services-manifest"; | 1038 const char kServicesManifest[] = "services-manifest"; |
| 1039 | 1039 |
| 1040 // Install a "fake" version of libcros to allow ChromeOS to run on a | |
| 1041 // regular linux box. This is useful to developers working on | |
| 1042 // features that do not require actual ChromeOS hardware. | |
| 1043 const char kUseFakeLibcros[] = "use-fake-libcros"; | |
| 1044 #endif | 1040 #endif |
| 1045 | 1041 |
| 1046 #if defined(OS_LINUX) | 1042 #if defined(OS_LINUX) |
| 1047 // Specify the amount the trackpad should scroll by. | 1043 // Specify the amount the trackpad should scroll by. |
| 1048 const char kScrollPixels[] = "scroll-pixels"; | 1044 const char kScrollPixels[] = "scroll-pixels"; |
| 1049 #endif | 1045 #endif |
| 1050 | 1046 |
| 1051 #if defined(OS_MACOSX) || defined(OS_WIN) | 1047 #if defined(OS_MACOSX) || defined(OS_WIN) |
| 1052 // Use the system SSL library (Secure Transport on Mac, SChannel on Windows) | 1048 // Use the system SSL library (Secure Transport on Mac, SChannel on Windows) |
| 1053 // instead of NSS for SSL. | 1049 // instead of NSS for SSL. |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1127 | 1123 |
| 1128 // ----------------------------------------------------------------------------- | 1124 // ----------------------------------------------------------------------------- |
| 1129 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1125 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1130 // | 1126 // |
| 1131 // You were going to just dump your switches here, weren't you? Instead, | 1127 // You were going to just dump your switches here, weren't you? Instead, |
| 1132 // please put them in alphabetical order above, or in order inside the | 1128 // please put them in alphabetical order above, or in order inside the |
| 1133 // appropriate ifdef at the bottom. The order should match the header. | 1129 // appropriate ifdef at the bottom. The order should match the header. |
| 1134 // ----------------------------------------------------------------------------- | 1130 // ----------------------------------------------------------------------------- |
| 1135 | 1131 |
| 1136 } // namespace switches | 1132 } // namespace switches |
| OLD | NEW |