| 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 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 const char kDomAutomationController[] = "dom-automation"; | 345 const char kDomAutomationController[] = "dom-automation"; |
| 346 | 346 |
| 347 // Dump any accumualted histograms to the log when browser terminates (requires | 347 // Dump any accumualted histograms to the log when browser terminates (requires |
| 348 // logging to be enabled to really do anything). Used by developers and test | 348 // logging to be enabled to really do anything). Used by developers and test |
| 349 // scripts. | 349 // scripts. |
| 350 const char kDumpHistogramsOnExit[] = "dump-histograms-on-exit"; | 350 const char kDumpHistogramsOnExit[] = "dump-histograms-on-exit"; |
| 351 | 351 |
| 352 // Enable displaying net log events on the command line. | 352 // Enable displaying net log events on the command line. |
| 353 extern const char kLogNetLog[] = "log-net-log"; | 353 extern const char kLogNetLog[] = "log-net-log"; |
| 354 | 354 |
| 355 // Enable gpu-accelerated compositing. | |
| 356 // TODO(vangelis): Remove the flag once accelerated compositing is enabled by | |
| 357 // default on all platforms. | |
| 358 const char kEnableAcceleratedCompositing[] = "enable-accelerated-compositing"; | |
| 359 | |
| 360 // Enable gpu-accelerated 2d canvas. | 355 // Enable gpu-accelerated 2d canvas. |
| 361 const char kEnableAccelerated2dCanvas[] = "enable-accelerated-2d-canvas"; | 356 const char kEnableAccelerated2dCanvas[] = "enable-accelerated-2d-canvas"; |
| 362 | 357 |
| 363 // Enables AeroPeek for each tab. (This switch only works on Windows 7). | 358 // Enables AeroPeek for each tab. (This switch only works on Windows 7). |
| 364 const char kEnableAeroPeekTabs[] = "enable-aero-peek-tabs"; | 359 const char kEnableAeroPeekTabs[] = "enable-aero-peek-tabs"; |
| 365 | 360 |
| 366 // Enable the inclusion of non-standard ports when generating the Kerberos SPN | 361 // Enable the inclusion of non-standard ports when generating the Kerberos SPN |
| 367 // in response to a Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN | 362 // in response to a Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN |
| 368 // for more background. | 363 // for more background. |
| 369 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; | 364 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; |
| (...skipping 897 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1267 | 1262 |
| 1268 // ----------------------------------------------------------------------------- | 1263 // ----------------------------------------------------------------------------- |
| 1269 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1264 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1270 // | 1265 // |
| 1271 // You were going to just dump your switches here, weren't you? Instead, | 1266 // You were going to just dump your switches here, weren't you? Instead, |
| 1272 // please put them in alphabetical order above, or in order inside the | 1267 // please put them in alphabetical order above, or in order inside the |
| 1273 // appropriate ifdef at the bottom. The order should match the header. | 1268 // appropriate ifdef at the bottom. The order should match the header. |
| 1274 // ----------------------------------------------------------------------------- | 1269 // ----------------------------------------------------------------------------- |
| 1275 | 1270 |
| 1276 } // namespace switches | 1271 } // namespace switches |
| OLD | NEW |