| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 1107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1118 | 1118 |
| 1119 #ifndef NDEBUG | 1119 #ifndef NDEBUG |
| 1120 // Skips all other OOBE pages after user login. | 1120 // Skips all other OOBE pages after user login. |
| 1121 const char kOobeSkipPostLogin[] = "oobe-skip-postlogin"; | 1121 const char kOobeSkipPostLogin[] = "oobe-skip-postlogin"; |
| 1122 | 1122 |
| 1123 // Enables overriding the path off file manager extension. | 1123 // Enables overriding the path off file manager extension. |
| 1124 const char kFileManagerExtensionPath[] = "filemgr-ext-path"; | 1124 const char kFileManagerExtensionPath[] = "filemgr-ext-path"; |
| 1125 #endif | 1125 #endif |
| 1126 #endif | 1126 #endif |
| 1127 | 1127 |
| 1128 #if defined(OS_POSIX) && !defined(OS_MACOSX) | |
| 1129 // Specify the amount the trackpad should scroll by. | |
| 1130 const char kScrollPixels[] = "scroll-pixels"; | |
| 1131 #endif | |
| 1132 | |
| 1133 #if defined(OS_MACOSX) || defined(OS_WIN) | 1128 #if defined(OS_MACOSX) || defined(OS_WIN) |
| 1134 // Use the system SSL library (Secure Transport on Mac, SChannel on Windows) | 1129 // Use the system SSL library (Secure Transport on Mac, SChannel on Windows) |
| 1135 // instead of NSS for SSL. | 1130 // instead of NSS for SSL. |
| 1136 const char kUseSystemSSL[] = "use-system-ssl"; | 1131 const char kUseSystemSSL[] = "use-system-ssl"; |
| 1137 #endif | 1132 #endif |
| 1138 | 1133 |
| 1139 #if defined(OS_POSIX) | 1134 #if defined(OS_POSIX) |
| 1140 // A flag, generated internally by Chrome for renderer and other helper process | 1135 // A flag, generated internally by Chrome for renderer and other helper process |
| 1141 // command lines on Linux and Mac. It tells the helper process to enable crash | 1136 // command lines on Linux and Mac. It tells the helper process to enable crash |
| 1142 // dumping and reporting, because helpers cannot access the profile or other | 1137 // dumping and reporting, because helpers cannot access the profile or other |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1245 | 1240 |
| 1246 // ----------------------------------------------------------------------------- | 1241 // ----------------------------------------------------------------------------- |
| 1247 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1242 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1248 // | 1243 // |
| 1249 // You were going to just dump your switches here, weren't you? Instead, | 1244 // You were going to just dump your switches here, weren't you? Instead, |
| 1250 // please put them in alphabetical order above, or in order inside the | 1245 // please put them in alphabetical order above, or in order inside the |
| 1251 // appropriate ifdef at the bottom. The order should match the header. | 1246 // appropriate ifdef at the bottom. The order should match the header. |
| 1252 // ----------------------------------------------------------------------------- | 1247 // ----------------------------------------------------------------------------- |
| 1253 | 1248 |
| 1254 } // namespace switches | 1249 } // namespace switches |
| OLD | NEW |