Chromium Code Reviews| 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 1258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1269 // Enables Media Player. | 1269 // Enables Media Player. |
| 1270 const char kEnableMediaPlayer[] = "enable-media-player"; | 1270 const char kEnableMediaPlayer[] = "enable-media-player"; |
| 1271 | 1271 |
| 1272 // Enables Advanced File System. | 1272 // Enables Advanced File System. |
| 1273 const char kEnableAdvancedFileSystem[] = "enable-advanced-fs"; | 1273 const char kEnableAdvancedFileSystem[] = "enable-advanced-fs"; |
| 1274 #endif | 1274 #endif |
| 1275 | 1275 |
| 1276 #if defined(OS_LINUX) | 1276 #if defined(OS_LINUX) |
| 1277 // Specify the amount the trackpad should scroll by. | 1277 // Specify the amount the trackpad should scroll by. |
| 1278 const char kScrollPixels[] = "scroll-pixels"; | 1278 const char kScrollPixels[] = "scroll-pixels"; |
| 1279 | |
| 1280 #if defined(TOOLKIT_VIEWS) | |
| 1281 // Enables TextfieldView. | |
| 1282 const char kEnableTextfieldView[] = "enable-textfield-view"; | |
|
sky
2010/12/15 20:31:27
nit: align '=' with '=' on 1278
oshima
2010/12/16 01:15:19
this has been moved and fixed.
| |
| 1283 #endif | |
| 1284 | |
| 1279 #endif | 1285 #endif |
| 1280 | 1286 |
| 1281 #if defined(OS_MACOSX) || defined(OS_WIN) | 1287 #if defined(OS_MACOSX) || defined(OS_WIN) |
| 1282 // Use the system SSL library (Secure Transport on Mac, SChannel on Windows) | 1288 // Use the system SSL library (Secure Transport on Mac, SChannel on Windows) |
| 1283 // instead of NSS for SSL. | 1289 // instead of NSS for SSL. |
| 1284 const char kUseSystemSSL[] = "use-system-ssl"; | 1290 const char kUseSystemSSL[] = "use-system-ssl"; |
| 1285 #endif | 1291 #endif |
| 1286 | 1292 |
| 1287 #if defined(OS_POSIX) | 1293 #if defined(OS_POSIX) |
| 1288 // A flag, generated internally by Chrome for renderer and other helper process | 1294 // A flag, generated internally by Chrome for renderer and other helper process |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1370 | 1376 |
| 1371 // ----------------------------------------------------------------------------- | 1377 // ----------------------------------------------------------------------------- |
| 1372 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1378 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1373 // | 1379 // |
| 1374 // You were going to just dump your switches here, weren't you? Instead, | 1380 // You were going to just dump your switches here, weren't you? Instead, |
| 1375 // please put them in alphabetical order above, or in order inside the | 1381 // please put them in alphabetical order above, or in order inside the |
| 1376 // appropriate ifdef at the bottom. The order should match the header. | 1382 // appropriate ifdef at the bottom. The order should match the header. |
| 1377 // ----------------------------------------------------------------------------- | 1383 // ----------------------------------------------------------------------------- |
| 1378 | 1384 |
| 1379 } // namespace switches | 1385 } // namespace switches |
| OLD | NEW |