| 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 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 490 const char kEnablePotentiallyAnnoyingSecurityFeatures[] = | 490 const char kEnablePotentiallyAnnoyingSecurityFeatures[] = |
| 491 "enable-potentially-annoying-security-features"; | 491 "enable-potentially-annoying-security-features"; |
| 492 | 492 |
| 493 // Enables the Power overlay in Settings. | 493 // Enables the Power overlay in Settings. |
| 494 const char kEnablePowerOverlay[] = "enable-power-overlay"; | 494 const char kEnablePowerOverlay[] = "enable-power-overlay"; |
| 495 | 495 |
| 496 // Enables showing unregistered printers in print preview | 496 // Enables showing unregistered printers in print preview |
| 497 const char kEnablePrintPreviewRegisterPromos[] = | 497 const char kEnablePrintPreviewRegisterPromos[] = |
| 498 "enable-print-preview-register-promos"; | 498 "enable-print-preview-register-promos"; |
| 499 | 499 |
| 500 // Enables Privet sessions. Temporarily for feature under development. |
| 501 const char kEnablePrivetV3[] = "enable-privet-v3"; |
| 502 |
| 500 // Enables tracking of tasks in profiler for viewing via about:profiler. | 503 // Enables tracking of tasks in profiler for viewing via about:profiler. |
| 501 // To predominantly disable tracking (profiling), use the command line switch: | 504 // To predominantly disable tracking (profiling), use the command line switch: |
| 502 // --enable-profiling=0 | 505 // --enable-profiling=0 |
| 503 // Some tracking will still take place at startup, but it will be turned off | 506 // Some tracking will still take place at startup, but it will be turned off |
| 504 // during chrome_browser_main. | 507 // during chrome_browser_main. |
| 505 const char kEnableProfiling[] = "enable-profiling"; | 508 const char kEnableProfiling[] = "enable-profiling"; |
| 506 | 509 |
| 507 // Enable or disable background mode for the Push API. | 510 // Enable or disable background mode for the Push API. |
| 508 const char kEnablePushApiBackgroundMode[] = "enable-push-api-background-mode"; | 511 const char kEnablePushApiBackgroundMode[] = "enable-push-api-background-mode"; |
| 509 const char kDisablePushApiBackgroundMode[] = "disable-push-api-background-mode"; | 512 const char kDisablePushApiBackgroundMode[] = "disable-push-api-background-mode"; |
| (...skipping 888 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1398 | 1401 |
| 1399 // ----------------------------------------------------------------------------- | 1402 // ----------------------------------------------------------------------------- |
| 1400 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1403 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1401 // | 1404 // |
| 1402 // You were going to just dump your switches here, weren't you? Instead, please | 1405 // You were going to just dump your switches here, weren't you? Instead, please |
| 1403 // put them in alphabetical order above, or in order inside the appropriate | 1406 // put them in alphabetical order above, or in order inside the appropriate |
| 1404 // ifdef at the bottom. The order should match the header. | 1407 // ifdef at the bottom. The order should match the header. |
| 1405 // ----------------------------------------------------------------------------- | 1408 // ----------------------------------------------------------------------------- |
| 1406 | 1409 |
| 1407 } // namespace switches | 1410 } // namespace switches |
| OLD | NEW |