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 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
391 | 391 |
392 // Enable OS integration for Chrome app file associations. | 392 // Enable OS integration for Chrome app file associations. |
393 const char kEnableAppsFileAssociations[] = "enable-apps-file-associations"; | 393 const char kEnableAppsFileAssociations[] = "enable-apps-file-associations"; |
394 | 394 |
395 // Enables the experimental asynchronous DNS client. | 395 // Enables the experimental asynchronous DNS client. |
396 const char kEnableAsyncDns[] = "enable-async-dns"; | 396 const char kEnableAsyncDns[] = "enable-async-dns"; |
397 | 397 |
398 // Enables the benchmarking extensions. | 398 // Enables the benchmarking extensions. |
399 const char kEnableBenchmarking[] = "enable-benchmarking"; | 399 const char kEnableBenchmarking[] = "enable-benchmarking"; |
400 | 400 |
401 // Enables client hints, which adds hints about browser state to HTTP requests. | |
402 const char kEnableClientHints[] = "enable-client-hints"; | |
403 | |
404 // Enables the multi-level undo system for bookmarks. | 401 // Enables the multi-level undo system for bookmarks. |
405 const char kEnableBookmarkUndo[] = "enable-bookmark-undo"; | 402 const char kEnableBookmarkUndo[] = "enable-bookmark-undo"; |
406 | 403 |
407 // This applies only when the process type is "service". Enables the Cloud | 404 // This applies only when the process type is "service". Enables the Cloud |
408 // Print Proxy component within the service process. | 405 // Print Proxy component within the service process. |
409 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; | 406 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; |
410 | 407 |
411 // If true devtools experimental settings are enabled. | 408 // If true devtools experimental settings are enabled. |
412 const char kEnableDevToolsExperiments[] = "enable-devtools-experiments"; | 409 const char kEnableDevToolsExperiments[] = "enable-devtools-experiments"; |
413 | 410 |
(...skipping 968 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1382 | 1379 |
1383 // ----------------------------------------------------------------------------- | 1380 // ----------------------------------------------------------------------------- |
1384 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1381 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1385 // | 1382 // |
1386 // You were going to just dump your switches here, weren't you? Instead, please | 1383 // You were going to just dump your switches here, weren't you? Instead, please |
1387 // put them in alphabetical order above, or in order inside the appropriate | 1384 // put them in alphabetical order above, or in order inside the appropriate |
1388 // ifdef at the bottom. The order should match the header. | 1385 // ifdef at the bottom. The order should match the header. |
1389 // ----------------------------------------------------------------------------- | 1386 // ----------------------------------------------------------------------------- |
1390 | 1387 |
1391 } // namespace switches | 1388 } // namespace switches |
OLD | NEW |