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 505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 516 | 516 |
| 517 // Enable IPv6 support, even if probes suggest that it may not be fully | 517 // Enable IPv6 support, even if probes suggest that it may not be fully |
| 518 // supported. Some probes may require internet connections, and this flag will | 518 // supported. Some probes may require internet connections, and this flag will |
| 519 // allow support independent of application testing. | 519 // allow support independent of application testing. |
| 520 // This flag overrides "disable-ipv6" which appears elswhere in this file. | 520 // This flag overrides "disable-ipv6" which appears elswhere in this file. |
| 521 const char kEnableIPv6[] = "enable-ipv6"; | 521 const char kEnableIPv6[] = "enable-ipv6"; |
| 522 | 522 |
| 523 // Enable the GPU plugin and Pepper 3D rendering. | 523 // Enable the GPU plugin and Pepper 3D rendering. |
| 524 const char kEnableGPUPlugin[] = "enable-gpu-plugin"; | 524 const char kEnableGPUPlugin[] = "enable-gpu-plugin"; |
| 525 | 525 |
| 526 // Enable experimental JavaScript I18N API. | |
| 527 const char kEnableJavaScriptI18NAPI[] = "enable-experimental-js-i18n-api"; | |
|
jungshik at Google
2011/01/27 23:49:47
nit:
flag name, variable names and webkit feature
| |
| 528 | |
| 526 // Force logging to be enabled. Logging is disabled by default in release | 529 // Force logging to be enabled. Logging is disabled by default in release |
| 527 // builds. | 530 // builds. |
| 528 const char kEnableLogging[] = "enable-logging"; | 531 const char kEnableLogging[] = "enable-logging"; |
| 529 | 532 |
| 530 // Allows reporting memory info (JS heap size) to page. | 533 // Allows reporting memory info (JS heap size) to page. |
| 531 const char kEnableMemoryInfo[] = "enable-memory-info"; | 534 const char kEnableMemoryInfo[] = "enable-memory-info"; |
| 532 | 535 |
| 533 // On Windows, converts the page to the currently-installed monitor profile. | 536 // On Windows, converts the page to the currently-installed monitor profile. |
| 534 // This does NOT enable color management for images. The source is still | 537 // This does NOT enable color management for images. The source is still |
| 535 // assumed to be sRGB. | 538 // assumed to be sRGB. |
| (...skipping 860 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1396 | 1399 |
| 1397 // ----------------------------------------------------------------------------- | 1400 // ----------------------------------------------------------------------------- |
| 1398 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1401 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1399 // | 1402 // |
| 1400 // You were going to just dump your switches here, weren't you? Instead, | 1403 // You were going to just dump your switches here, weren't you? Instead, |
| 1401 // please put them in alphabetical order above, or in order inside the | 1404 // please put them in alphabetical order above, or in order inside the |
| 1402 // appropriate ifdef at the bottom. The order should match the header. | 1405 // appropriate ifdef at the bottom. The order should match the header. |
| 1403 // ----------------------------------------------------------------------------- | 1406 // ----------------------------------------------------------------------------- |
| 1404 | 1407 |
| 1405 } // namespace switches | 1408 } // namespace switches |
| OLD | NEW |