| OLD | NEW | 
|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 394 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 405 | 405 | 
| 406 // If set, the app list will be enabled as if enabled from CWS. | 406 // If set, the app list will be enabled as if enabled from CWS. | 
| 407 const char kEnableAppList[]                 = "enable-app-list"; | 407 const char kEnableAppList[]                 = "enable-app-list"; | 
| 408 | 408 | 
| 409 // Enable OS integration for Chrome app file associations. | 409 // Enable OS integration for Chrome app file associations. | 
| 410 const char kEnableAppsFileAssociations[]    = "enable-apps-file-associations"; | 410 const char kEnableAppsFileAssociations[]    = "enable-apps-file-associations"; | 
| 411 | 411 | 
| 412 // Enables the experimental asynchronous DNS client. | 412 // Enables the experimental asynchronous DNS client. | 
| 413 const char kEnableAsyncDns[]                = "enable-async-dns"; | 413 const char kEnableAsyncDns[]                = "enable-async-dns"; | 
| 414 | 414 | 
| 415 // Enables the inclusion of non-standard ports when generating the Kerberos SPN |  | 
| 416 // in response to a Negotiate challenge. See |  | 
| 417 // HttpAuthHandlerNegotiate::CreateSPN for more background. |  | 
| 418 const char kEnableAuthNegotiatePort[]       = "enable-auth-negotiate-port"; |  | 
| 419 |  | 
| 420 // Enables the benchmarking extensions. | 415 // Enables the benchmarking extensions. | 
| 421 const char kEnableBenchmarking[]            = "enable-benchmarking"; | 416 const char kEnableBenchmarking[]            = "enable-benchmarking"; | 
| 422 | 417 | 
| 423 // Enables client hints, which adds hints about browser state to HTTP requests. | 418 // Enables client hints, which adds hints about browser state to HTTP requests. | 
| 424 const char kEnableClientHints[]             = "enable-client-hints"; | 419 const char kEnableClientHints[]             = "enable-client-hints"; | 
| 425 | 420 | 
| 426 // Enables the multi-level undo system for bookmarks. | 421 // Enables the multi-level undo system for bookmarks. | 
| 427 const char kEnableBookmarkUndo[]            = "enable-bookmark-undo"; | 422 const char kEnableBookmarkUndo[]            = "enable-bookmark-undo"; | 
| 428 | 423 | 
| 429 // This applies only when the process type is "service". Enables the Cloud | 424 // This applies only when the process type is "service". Enables the Cloud | 
| (...skipping 996 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1426 | 1421 | 
| 1427 // ----------------------------------------------------------------------------- | 1422 // ----------------------------------------------------------------------------- | 
| 1428 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1423 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 
| 1429 // | 1424 // | 
| 1430 // You were going to just dump your switches here, weren't you? Instead, please | 1425 // You were going to just dump your switches here, weren't you? Instead, please | 
| 1431 // put them in alphabetical order above, or in order inside the appropriate | 1426 // put them in alphabetical order above, or in order inside the appropriate | 
| 1432 // ifdef at the bottom. The order should match the header. | 1427 // ifdef at the bottom. The order should match the header. | 
| 1433 // ----------------------------------------------------------------------------- | 1428 // ----------------------------------------------------------------------------- | 
| 1434 | 1429 | 
| 1435 }  // namespace switches | 1430 }  // namespace switches | 
| OLD | NEW | 
|---|