| 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 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 // logging to be enabled to really do anything). Used by developers and test | 352 // logging to be enabled to really do anything). Used by developers and test |
| 353 // scripts. | 353 // scripts. |
| 354 const char kDumpHistogramsOnExit[] = "dump-histograms-on-exit"; | 354 const char kDumpHistogramsOnExit[] = "dump-histograms-on-exit"; |
| 355 | 355 |
| 356 // Enable displaying net log events on the command line. | 356 // Enable displaying net log events on the command line. |
| 357 extern const char kLogNetLog[] = "log-net-log"; | 357 extern const char kLogNetLog[] = "log-net-log"; |
| 358 | 358 |
| 359 // Enable gpu-accelerated 2d canvas. | 359 // Enable gpu-accelerated 2d canvas. |
| 360 const char kEnableAccelerated2dCanvas[] = "enable-accelerated-2d-canvas"; | 360 const char kEnableAccelerated2dCanvas[] = "enable-accelerated-2d-canvas"; |
| 361 | 361 |
| 362 // Enables WebKit accessibility within the renderer process. |
| 363 const char kEnableAccessibility[] = "enable-accessibility"; |
| 364 |
| 362 // Enables AeroPeek for each tab. (This switch only works on Windows 7). | 365 // Enables AeroPeek for each tab. (This switch only works on Windows 7). |
| 363 const char kEnableAeroPeekTabs[] = "enable-aero-peek-tabs"; | 366 const char kEnableAeroPeekTabs[] = "enable-aero-peek-tabs"; |
| 364 | 367 |
| 365 // Enable the inclusion of non-standard ports when generating the Kerberos SPN | 368 // Enable the inclusion of non-standard ports when generating the Kerberos SPN |
| 366 // in response to a Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN | 369 // in response to a Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN |
| 367 // for more background. | 370 // for more background. |
| 368 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; | 371 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; |
| 369 | 372 |
| 370 // Enable background mode (background apps will keep chrome running in the | 373 // Enable background mode (background apps will keep chrome running in the |
| 371 // background and allow chrome to launch on startup). | 374 // background and allow chrome to launch on startup). |
| (...skipping 882 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1254 | 1257 |
| 1255 // ----------------------------------------------------------------------------- | 1258 // ----------------------------------------------------------------------------- |
| 1256 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1259 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1257 // | 1260 // |
| 1258 // You were going to just dump your switches here, weren't you? Instead, | 1261 // You were going to just dump your switches here, weren't you? Instead, |
| 1259 // please put them in alphabetical order above, or in order inside the | 1262 // please put them in alphabetical order above, or in order inside the |
| 1260 // appropriate ifdef at the bottom. The order should match the header. | 1263 // appropriate ifdef at the bottom. The order should match the header. |
| 1261 // ----------------------------------------------------------------------------- | 1264 // ----------------------------------------------------------------------------- |
| 1262 | 1265 |
| 1263 } // namespace switches | 1266 } // namespace switches |
| OLD | NEW |