| 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 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 519 | 519 |
| 520 // Enable IPv6 support, even if probes suggest that it may not be fully | 520 // Enable IPv6 support, even if probes suggest that it may not be fully |
| 521 // supported. Some probes may require internet connections, and this flag will | 521 // supported. Some probes may require internet connections, and this flag will |
| 522 // allow support independent of application testing. | 522 // allow support independent of application testing. |
| 523 // This flag overrides "disable-ipv6" which appears elswhere in this file. | 523 // This flag overrides "disable-ipv6" which appears elswhere in this file. |
| 524 const char kEnableIPv6[] = "enable-ipv6"; | 524 const char kEnableIPv6[] = "enable-ipv6"; |
| 525 | 525 |
| 526 // Enable the GPU plugin and Pepper 3D rendering. | 526 // Enable the GPU plugin and Pepper 3D rendering. |
| 527 const char kEnableGPUPlugin[] = "enable-gpu-plugin"; | 527 const char kEnableGPUPlugin[] = "enable-gpu-plugin"; |
| 528 | 528 |
| 529 // Enable experimental JavaScript I18N API. |
| 530 const char kEnableJavaScriptI18NAPI[] = "enable-javascript-i18n-api"; |
| 531 |
| 529 // Force logging to be enabled. Logging is disabled by default in release | 532 // Force logging to be enabled. Logging is disabled by default in release |
| 530 // builds. | 533 // builds. |
| 531 const char kEnableLogging[] = "enable-logging"; | 534 const char kEnableLogging[] = "enable-logging"; |
| 532 | 535 |
| 533 // Allows reporting memory info (JS heap size) to page. | 536 // Allows reporting memory info (JS heap size) to page. |
| 534 const char kEnableMemoryInfo[] = "enable-memory-info"; | 537 const char kEnableMemoryInfo[] = "enable-memory-info"; |
| 535 | 538 |
| 536 // On Windows, converts the page to the currently-installed monitor profile. | 539 // On Windows, converts the page to the currently-installed monitor profile. |
| 537 // This does NOT enable color management for images. The source is still | 540 // This does NOT enable color management for images. The source is still |
| 538 // assumed to be sRGB. | 541 // assumed to be sRGB. |
| (...skipping 869 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1408 | 1411 |
| 1409 // ----------------------------------------------------------------------------- | 1412 // ----------------------------------------------------------------------------- |
| 1410 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1413 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1411 // | 1414 // |
| 1412 // You were going to just dump your switches here, weren't you? Instead, | 1415 // You were going to just dump your switches here, weren't you? Instead, |
| 1413 // please put them in alphabetical order above, or in order inside the | 1416 // please put them in alphabetical order above, or in order inside the |
| 1414 // appropriate ifdef at the bottom. The order should match the header. | 1417 // appropriate ifdef at the bottom. The order should match the header. |
| 1415 // ----------------------------------------------------------------------------- | 1418 // ----------------------------------------------------------------------------- |
| 1416 | 1419 |
| 1417 } // namespace switches | 1420 } // namespace switches |
| OLD | NEW |