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 583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
594 // Enables video logging where video elements log playback performance data to | 594 // Enables video logging where video elements log playback performance data to |
595 // the debug log. | 595 // the debug log. |
596 const char kEnableVideoLogging[] = "enable-video-logging"; | 596 const char kEnableVideoLogging[] = "enable-video-logging"; |
597 | 597 |
598 // Spawn threads to watch for excessive delays in specified message loops. | 598 // Spawn threads to watch for excessive delays in specified message loops. |
599 // User should set breakpoints on Alarm() to examine problematic thread. | 599 // User should set breakpoints on Alarm() to examine problematic thread. |
600 // Usage: -enable-watchdog=[ui][io] | 600 // Usage: -enable-watchdog=[ui][io] |
601 // Order of the listed sub-arguments does not matter. | 601 // Order of the listed sub-arguments does not matter. |
602 const char kEnableWatchdog[] = "enable-watchdog"; | 602 const char kEnableWatchdog[] = "enable-watchdog"; |
603 | 603 |
| 604 // Enable web audio API. |
| 605 const char kEnableWebAudio[] = "enable-webaudio"; |
| 606 |
604 // Disable WebKit's XSSAuditor. The XSSAuditor mitigates reflective XSS. | 607 // Disable WebKit's XSSAuditor. The XSSAuditor mitigates reflective XSS. |
605 const char kEnableXSSAuditor[] = "enable-xss-auditor"; | 608 const char kEnableXSSAuditor[] = "enable-xss-auditor"; |
606 | 609 |
607 // Enables experimental features for the geolocation API. | 610 // Enables experimental features for the geolocation API. |
608 // Current features: | 611 // Current features: |
609 // - CoreLocation support for Mac OS X 10.6 | 612 // - CoreLocation support for Mac OS X 10.6 |
610 // - Gateway location for Linux and Windows | 613 // - Gateway location for Linux and Windows |
611 // - Location platform support for Windows 7 | 614 // - Location platform support for Windows 7 |
612 const char kExperimentalLocationFeatures[] = "experimental-location-features"; | 615 const char kExperimentalLocationFeatures[] = "experimental-location-features"; |
613 | 616 |
(...skipping 765 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1379 | 1382 |
1380 // ----------------------------------------------------------------------------- | 1383 // ----------------------------------------------------------------------------- |
1381 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1384 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1382 // | 1385 // |
1383 // You were going to just dump your switches here, weren't you? Instead, | 1386 // You were going to just dump your switches here, weren't you? Instead, |
1384 // please put them in alphabetical order above, or in order inside the | 1387 // please put them in alphabetical order above, or in order inside the |
1385 // appropriate ifdef at the bottom. The order should match the header. | 1388 // appropriate ifdef at the bottom. The order should match the header. |
1386 // ----------------------------------------------------------------------------- | 1389 // ----------------------------------------------------------------------------- |
1387 | 1390 |
1388 } // namespace switches | 1391 } // namespace switches |
OLD | NEW |