| 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 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 const char kEnablePotentiallyAnnoyingSecurityFeatures[] = | 467 const char kEnablePotentiallyAnnoyingSecurityFeatures[] = |
| 468 "enable-potentially-annoying-security-features"; | 468 "enable-potentially-annoying-security-features"; |
| 469 | 469 |
| 470 // Enables the Power overlay in Settings. | 470 // Enables the Power overlay in Settings. |
| 471 const char kEnablePowerOverlay[] = "enable-power-overlay"; | 471 const char kEnablePowerOverlay[] = "enable-power-overlay"; |
| 472 | 472 |
| 473 // Enables showing unregistered printers in print preview | 473 // Enables showing unregistered printers in print preview |
| 474 const char kEnablePrintPreviewRegisterPromos[] = | 474 const char kEnablePrintPreviewRegisterPromos[] = |
| 475 "enable-print-preview-register-promos"; | 475 "enable-print-preview-register-promos"; |
| 476 | 476 |
| 477 // Enables Privet sessions. Temporarily for feature under development. | |
| 478 const char kEnablePrivetV3[] = "enable-privet-v3"; | |
| 479 | |
| 480 // Enables tracking of tasks in profiler for viewing via about:profiler. | 477 // Enables tracking of tasks in profiler for viewing via about:profiler. |
| 481 // To predominantly disable tracking (profiling), use the command line switch: | 478 // To predominantly disable tracking (profiling), use the command line switch: |
| 482 // --enable-profiling=0 | 479 // --enable-profiling=0 |
| 483 // Some tracking will still take place at startup, but it will be turned off | 480 // Some tracking will still take place at startup, but it will be turned off |
| 484 // during chrome_browser_main. | 481 // during chrome_browser_main. |
| 485 const char kEnableProfiling[] = "enable-profiling"; | 482 const char kEnableProfiling[] = "enable-profiling"; |
| 486 | 483 |
| 487 // Enable or disable background mode for the Push API. | 484 // Enable or disable background mode for the Push API. |
| 488 const char kEnablePushApiBackgroundMode[] = "enable-push-api-background-mode"; | 485 const char kEnablePushApiBackgroundMode[] = "enable-push-api-background-mode"; |
| 489 const char kDisablePushApiBackgroundMode[] = "disable-push-api-background-mode"; | 486 const char kDisablePushApiBackgroundMode[] = "disable-push-api-background-mode"; |
| (...skipping 886 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1376 | 1373 |
| 1377 // ----------------------------------------------------------------------------- | 1374 // ----------------------------------------------------------------------------- |
| 1378 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1375 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1379 // | 1376 // |
| 1380 // You were going to just dump your switches here, weren't you? Instead, please | 1377 // You were going to just dump your switches here, weren't you? Instead, please |
| 1381 // put them in alphabetical order above, or in order inside the appropriate | 1378 // put them in alphabetical order above, or in order inside the appropriate |
| 1382 // ifdef at the bottom. The order should match the header. | 1379 // ifdef at the bottom. The order should match the header. |
| 1383 // ----------------------------------------------------------------------------- | 1380 // ----------------------------------------------------------------------------- |
| 1384 | 1381 |
| 1385 } // namespace switches | 1382 } // namespace switches |
| OLD | NEW |