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 867 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
878 // performance tests. | 878 // performance tests. |
879 const char kMetricsRecordingOnly[] = "metrics-recording-only"; | 879 const char kMetricsRecordingOnly[] = "metrics-recording-only"; |
880 | 880 |
881 // Enables multiprofile Chrome. | 881 // Enables multiprofile Chrome. |
882 const char kMultiProfiles[] = "multi-profiles"; | 882 const char kMultiProfiles[] = "multi-profiles"; |
883 | 883 |
884 // Sets the base logging level for the net log. Log 0 logs the most data. | 884 // Sets the base logging level for the net log. Log 0 logs the most data. |
885 // Intended primarily for use with --log-net-log. | 885 // Intended primarily for use with --log-net-log. |
886 const char kNetLogLevel[] = "net-log-level"; | 886 const char kNetLogLevel[] = "net-log-level"; |
887 | 887 |
| 888 // Use new avatar menu. When combined with new-profile-management, it simply |
| 889 // shows the new profile management avatar menu. Otherwise it shows a redesigned |
| 890 // avatar menu with the same functionality as the old one, plus a tutorial card |
| 891 // at the top prompting the user to try out the new profile management UI. |
| 892 const char kNewAvatarMenu[] = "new-avatar-menu"; |
| 893 |
| 894 // Use new profile management system, including profile sign-out and new |
| 895 // choosers. |
| 896 const char kNewProfileManagement[] = "new-profile-management"; |
| 897 |
888 // Disables the default browser check. Useful for UI/browser tests where we | 898 // Disables the default browser check. Useful for UI/browser tests where we |
889 // want to avoid having the default browser info-bar displayed. | 899 // want to avoid having the default browser info-bar displayed. |
890 const char kNoDefaultBrowserCheck[] = "no-default-browser-check"; | 900 const char kNoDefaultBrowserCheck[] = "no-default-browser-check"; |
891 | 901 |
892 // By default, an https page can load images, fonts or frames from an http | 902 // By default, an https page can load images, fonts or frames from an http |
893 // page. This switch overrides this to block this lesser mixed-content problem. | 903 // page. This switch overrides this to block this lesser mixed-content problem. |
894 const char kNoDisplayingInsecureContent[] = "no-displaying-insecure-content"; | 904 const char kNoDisplayingInsecureContent[] = "no-displaying-insecure-content"; |
895 | 905 |
896 // Don't record/playback events when using record & playback. | 906 // Don't record/playback events when using record & playback. |
897 const char kNoEvents[] = "no-events"; | 907 const char kNoEvents[] = "no-events"; |
(...skipping 564 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1462 | 1472 |
1463 // ----------------------------------------------------------------------------- | 1473 // ----------------------------------------------------------------------------- |
1464 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1474 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1465 // | 1475 // |
1466 // You were going to just dump your switches here, weren't you? Instead, please | 1476 // You were going to just dump your switches here, weren't you? Instead, please |
1467 // put them in alphabetical order above, or in order inside the appropriate | 1477 // put them in alphabetical order above, or in order inside the appropriate |
1468 // ifdef at the bottom. The order should match the header. | 1478 // ifdef at the bottom. The order should match the header. |
1469 // ----------------------------------------------------------------------------- | 1479 // ----------------------------------------------------------------------------- |
1470 | 1480 |
1471 } // namespace switches | 1481 } // namespace switches |
OLD | NEW |