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/browser/about_flags.h" | 5 #include "chrome/browser/about_flags.h" |
6 | 6 |
7 #include <iterator> | 7 #include <iterator> |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <utility> | 10 #include <utility> |
(...skipping 1843 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1854 }, | 1854 }, |
1855 { | 1855 { |
1856 "enable-session-crashed-bubble", | 1856 "enable-session-crashed-bubble", |
1857 IDS_FLAGS_ENABLE_SESSION_CRASHED_BUBBLE_NAME, | 1857 IDS_FLAGS_ENABLE_SESSION_CRASHED_BUBBLE_NAME, |
1858 IDS_FLAGS_ENABLE_SESSION_CRASHED_BUBBLE_DESCRIPTION, | 1858 IDS_FLAGS_ENABLE_SESSION_CRASHED_BUBBLE_DESCRIPTION, |
1859 kOsWin | kOsLinux, | 1859 kOsWin | kOsLinux, |
1860 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSessionCrashedBubble, | 1860 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSessionCrashedBubble, |
1861 switches::kDisableSessionCrashedBubble) | 1861 switches::kDisableSessionCrashedBubble) |
1862 }, | 1862 }, |
1863 { | 1863 { |
1864 "enable-out-of-process-pdf", | |
1865 IDS_FLAGS_OUT_OF_PROCESS_PDF_NAME, | |
1866 IDS_FLAGS_OUT_OF_PROCESS_PDF_DESCRIPTION, | |
1867 kOsDesktop, | |
1868 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableOutOfProcessPdf, | |
1869 switches::kDisableOutOfProcessPdf) | |
1870 }, | |
1871 { | |
1872 "enable-pdf-material-ui", | 1864 "enable-pdf-material-ui", |
1873 IDS_FLAGS_PDF_MATERIAL_UI_NAME, | 1865 IDS_FLAGS_PDF_MATERIAL_UI_NAME, |
1874 IDS_FLAGS_PDF_MATERIAL_UI_DESCRIPTION, | 1866 IDS_FLAGS_PDF_MATERIAL_UI_DESCRIPTION, |
1875 kOsDesktop, | 1867 kOsDesktop, |
1876 ENABLE_DISABLE_VALUE_TYPE(switches::kEnablePdfMaterialUI, | 1868 ENABLE_DISABLE_VALUE_TYPE(switches::kEnablePdfMaterialUI, |
1877 switches::kDisablePdfMaterialUI) | 1869 switches::kDisablePdfMaterialUI) |
1878 }, | 1870 }, |
1879 { | 1871 { |
1880 "disable-cast-streaming-hw-encoding", | 1872 "disable-cast-streaming-hw-encoding", |
1881 IDS_FLAGS_DISABLE_CAST_STREAMING_HW_ENCODING_NAME, | 1873 IDS_FLAGS_DISABLE_CAST_STREAMING_HW_ENCODING_NAME, |
(...skipping 1135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3017 } | 3009 } |
3018 | 3010 |
3019 const Experiment* GetExperiments(size_t* count) { | 3011 const Experiment* GetExperiments(size_t* count) { |
3020 *count = num_experiments; | 3012 *count = num_experiments; |
3021 return experiments; | 3013 return experiments; |
3022 } | 3014 } |
3023 | 3015 |
3024 } // namespace testing | 3016 } // namespace testing |
3025 | 3017 |
3026 } // namespace about_flags | 3018 } // namespace about_flags |
OLD | NEW |