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 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
403 const char kDomAutomationController[] = "dom-automation"; | 403 const char kDomAutomationController[] = "dom-automation"; |
404 | 404 |
405 // Dump any accumualted histograms to the log when browser terminates (requires | 405 // Dump any accumualted histograms to the log when browser terminates (requires |
406 // logging to be enabled to really do anything). Used by developers and test | 406 // logging to be enabled to really do anything). Used by developers and test |
407 // scripts. | 407 // scripts. |
408 const char kDumpHistogramsOnExit[] = "dump-histograms-on-exit"; | 408 const char kDumpHistogramsOnExit[] = "dump-histograms-on-exit"; |
409 | 409 |
410 // Enable displaying net log events on the command line. | 410 // Enable displaying net log events on the command line. |
411 extern const char kLogNetLog[] = "log-net-log"; | 411 extern const char kLogNetLog[] = "log-net-log"; |
412 | 412 |
413 // Enable web audio API. | |
414 const char kEnableWebAudio[] = "enable-webaudio"; | |
darin (slow to review)
2011/01/19 23:32:43
nit: please follow the indentation style for the r
Chris Rogers
2011/01/20 00:08:27
Done.
| |
415 | |
413 // Enable gpu-accelerated 2d canvas. | 416 // Enable gpu-accelerated 2d canvas. |
414 const char kEnableAccelerated2dCanvas[] = "enable-accelerated-2d-canvas"; | 417 const char kEnableAccelerated2dCanvas[] = "enable-accelerated-2d-canvas"; |
415 | 418 |
416 // Enables the hardware acceleration of 3D CSS and animation. | 419 // Enables the hardware acceleration of 3D CSS and animation. |
417 const char kEnableAcceleratedLayers[] = "enable-accelerated-layers"; | 420 const char kEnableAcceleratedLayers[] = "enable-accelerated-layers"; |
418 | 421 |
419 // Enables the hardware acceleration of plugins. | 422 // Enables the hardware acceleration of plugins. |
420 const char kEnableAcceleratedPlugins[] = "enable-accelerated-plugins"; | 423 const char kEnableAcceleratedPlugins[] = "enable-accelerated-plugins"; |
421 | 424 |
422 // Enables WebKit accessibility within the renderer process. | 425 // Enables WebKit accessibility within the renderer process. |
(...skipping 956 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 |