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 <algorithm> | 7 #include <algorithm> |
8 #include <iterator> | 8 #include <iterator> |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
(...skipping 1802 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1813 }, | 1813 }, |
1814 { | 1814 { |
1815 "out-of-process-pdf", | 1815 "out-of-process-pdf", |
1816 IDS_FLAGS_OUT_OF_PROCESS_PDF_NAME, | 1816 IDS_FLAGS_OUT_OF_PROCESS_PDF_NAME, |
1817 IDS_FLAGS_OUT_OF_PROCESS_PDF_DESCRIPTION, | 1817 IDS_FLAGS_OUT_OF_PROCESS_PDF_DESCRIPTION, |
1818 kOsDesktop, | 1818 kOsDesktop, |
1819 SINGLE_VALUE_TYPE(switches::kOutOfProcessPdf) | 1819 SINGLE_VALUE_TYPE(switches::kOutOfProcessPdf) |
1820 }, | 1820 }, |
1821 #if defined(OS_ANDROID) | 1821 #if defined(OS_ANDROID) |
1822 { | 1822 { |
1823 "enable-fast-text-autosizing", | |
1824 IDS_FLAGS_ENABLE_FAST_TEXT_AUTOSIZING_NAME, | |
1825 IDS_FLAGS_ENABLE_FAST_TEXT_AUTOSIZING_DESCRIPTION, | |
1826 kOsAndroid, | |
1827 SINGLE_VALUE_TYPE(switches::kEnableFastTextAutosizing) | |
1828 }, | |
1829 { | |
1830 "disable-cast", | 1823 "disable-cast", |
1831 IDS_FLAGS_DISABLE_CAST_NAME, | 1824 IDS_FLAGS_DISABLE_CAST_NAME, |
1832 IDS_FLAGS_DISABLE_CAST_DESCRIPTION, | 1825 IDS_FLAGS_DISABLE_CAST_DESCRIPTION, |
1833 kOsAndroid, | 1826 kOsAndroid, |
1834 SINGLE_VALUE_TYPE(switches::kDisableCast) | 1827 SINGLE_VALUE_TYPE(switches::kDisableCast) |
1835 }, | 1828 }, |
1836 #endif | 1829 #endif |
1837 { | 1830 { |
1838 "prefetch-search-results", | 1831 "prefetch-search-results", |
1839 IDS_FLAGS_PREFETCH_SEARCH_RESULTS_NAME, | 1832 IDS_FLAGS_PREFETCH_SEARCH_RESULTS_NAME, |
(...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2388 } | 2381 } |
2389 | 2382 |
2390 const Experiment* GetExperiments(size_t* count) { | 2383 const Experiment* GetExperiments(size_t* count) { |
2391 *count = num_experiments; | 2384 *count = num_experiments; |
2392 return experiments; | 2385 return experiments; |
2393 } | 2386 } |
2394 | 2387 |
2395 } // namespace testing | 2388 } // namespace testing |
2396 | 2389 |
2397 } // namespace about_flags | 2390 } // namespace about_flags |
OLD | NEW |