| 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 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 1128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1139 // Enables Media Player. | 1139 // Enables Media Player. |
| 1140 const char kEnableMediaPlayer[] = "enable-media-player"; | 1140 const char kEnableMediaPlayer[] = "enable-media-player"; |
| 1141 | 1141 |
| 1142 // Enables Advanced File System. | 1142 // Enables Advanced File System. |
| 1143 const char kEnableAdvancedFileSystem[] = "enable-advanced-fs"; | 1143 const char kEnableAdvancedFileSystem[] = "enable-advanced-fs"; |
| 1144 #endif | 1144 #endif |
| 1145 | 1145 |
| 1146 #if defined(OS_LINUX) | 1146 #if defined(OS_LINUX) |
| 1147 // Specify the amount the trackpad should scroll by. | 1147 // Specify the amount the trackpad should scroll by. |
| 1148 const char kScrollPixels[] = "scroll-pixels"; | 1148 const char kScrollPixels[] = "scroll-pixels"; |
| 1149 |
| 1150 // Enable use of the SCTP transport protocol |
| 1151 const char kUseSctp[] = "use-sctp"; |
| 1149 #endif | 1152 #endif |
| 1150 | 1153 |
| 1151 #if defined(OS_MACOSX) || defined(OS_WIN) | 1154 #if defined(OS_MACOSX) || defined(OS_WIN) |
| 1152 // Use the system SSL library (Secure Transport on Mac, SChannel on Windows) | 1155 // Use the system SSL library (Secure Transport on Mac, SChannel on Windows) |
| 1153 // instead of NSS for SSL. | 1156 // instead of NSS for SSL. |
| 1154 const char kUseSystemSSL[] = "use-system-ssl"; | 1157 const char kUseSystemSSL[] = "use-system-ssl"; |
| 1155 #endif | 1158 #endif |
| 1156 | 1159 |
| 1157 #if defined(OS_POSIX) | 1160 #if defined(OS_POSIX) |
| 1158 // A flag, generated internally by Chrome for renderer and other helper process | 1161 // A flag, generated internally by Chrome for renderer and other helper process |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1217 | 1220 |
| 1218 // ----------------------------------------------------------------------------- | 1221 // ----------------------------------------------------------------------------- |
| 1219 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1222 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1220 // | 1223 // |
| 1221 // You were going to just dump your switches here, weren't you? Instead, | 1224 // You were going to just dump your switches here, weren't you? Instead, |
| 1222 // please put them in alphabetical order above, or in order inside the | 1225 // please put them in alphabetical order above, or in order inside the |
| 1223 // appropriate ifdef at the bottom. The order should match the header. | 1226 // appropriate ifdef at the bottom. The order should match the header. |
| 1224 // ----------------------------------------------------------------------------- | 1227 // ----------------------------------------------------------------------------- |
| 1225 | 1228 |
| 1226 } // namespace switches | 1229 } // namespace switches |
| OLD | NEW |