OLD | NEW |
---|---|
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
357 // |AutomationRenderViewHelper|. | 357 // |AutomationRenderViewHelper|. |
358 // TODO(kkania): Rename this to enable-renderer-automation after moving the | 358 // TODO(kkania): Rename this to enable-renderer-automation after moving the |
359 // |DOMAutomationController| to the |AutomationRenderViewHelper|. | 359 // |DOMAutomationController| to the |AutomationRenderViewHelper|. |
360 const char kDomAutomationController[] = "dom-automation"; | 360 const char kDomAutomationController[] = "dom-automation"; |
361 | 361 |
362 // Dump any accumualted histograms to the log when browser terminates (requires | 362 // Dump any accumualted histograms to the log when browser terminates (requires |
363 // logging to be enabled to really do anything). Used by developers and test | 363 // logging to be enabled to really do anything). Used by developers and test |
364 // scripts. | 364 // scripts. |
365 const char kDumpHistogramsOnExit[] = "dump-histograms-on-exit"; | 365 const char kDumpHistogramsOnExit[] = "dump-histograms-on-exit"; |
366 | 366 |
367 // Enable gpu-accelerated 2d canvas. | 367 // Disable gpu-accelerated 2d canvas. |
368 const char kEnableAccelerated2dCanvas[] = "enable-accelerated-2d-canvas"; | 368 const char kDisableAccelerated2dCanvas[] = "disable-accelerated-2d-canvas"; |
vangelis
2011/05/24 17:03:33
The flag definitions are more or less in alphabeti
Justin Novosad
2011/05/24 17:29:03
Done.
| |
369 | 369 |
370 // Enables the hardware acceleration of plugins. | 370 // Enables the hardware acceleration of plugins. |
371 const char kEnableAcceleratedPlugins[] = "enable-accelerated-plugins"; | 371 const char kEnableAcceleratedPlugins[] = "enable-accelerated-plugins"; |
372 | 372 |
373 // Enables AeroPeek for each tab. (This switch only works on Windows 7). | 373 // Enables AeroPeek for each tab. (This switch only works on Windows 7). |
374 const char kEnableAeroPeekTabs[] = "enable-aero-peek-tabs"; | 374 const char kEnableAeroPeekTabs[] = "enable-aero-peek-tabs"; |
375 | 375 |
376 // Enable the inclusion of non-standard ports when generating the Kerberos SPN | 376 // Enable the inclusion of non-standard ports when generating the Kerberos SPN |
377 // in response to a Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN | 377 // in response to a Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN |
378 // for more background. | 378 // for more background. |
(...skipping 806 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1185 | 1185 |
1186 // ----------------------------------------------------------------------------- | 1186 // ----------------------------------------------------------------------------- |
1187 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1187 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1188 // | 1188 // |
1189 // You were going to just dump your switches here, weren't you? Instead, | 1189 // You were going to just dump your switches here, weren't you? Instead, |
1190 // please put them in alphabetical order above, or in order inside the | 1190 // please put them in alphabetical order above, or in order inside the |
1191 // appropriate ifdef at the bottom. The order should match the header. | 1191 // appropriate ifdef at the bottom. The order should match the header. |
1192 // ----------------------------------------------------------------------------- | 1192 // ----------------------------------------------------------------------------- |
1193 | 1193 |
1194 } // namespace switches | 1194 } // namespace switches |
OLD | NEW |