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