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 1795 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1806 IDS_FLAGS_OUT_OF_PROCESS_PDF_DESCRIPTION, | 1806 IDS_FLAGS_OUT_OF_PROCESS_PDF_DESCRIPTION, |
1807 kOsDesktop, | 1807 kOsDesktop, |
1808 SINGLE_VALUE_TYPE(switches::kOutOfProcessPdf) | 1808 SINGLE_VALUE_TYPE(switches::kOutOfProcessPdf) |
1809 }, | 1809 }, |
1810 #if defined(OS_ANDROID) | 1810 #if defined(OS_ANDROID) |
1811 { | 1811 { |
1812 "enable-fast-text-autosizing", | 1812 "enable-fast-text-autosizing", |
1813 IDS_FLAGS_ENABLE_FAST_TEXT_AUTOSIZING_NAME, | 1813 IDS_FLAGS_ENABLE_FAST_TEXT_AUTOSIZING_NAME, |
1814 IDS_FLAGS_ENABLE_FAST_TEXT_AUTOSIZING_DESCRIPTION, | 1814 IDS_FLAGS_ENABLE_FAST_TEXT_AUTOSIZING_DESCRIPTION, |
1815 kOsAndroid, | 1815 kOsAndroid, |
1816 SINGLE_VALUE_TYPE(switches::kEnableFastTextAutosizing) | 1816 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableFastTextAutosizing, |
| 1817 switches::kDisableFastTextAutosizing) |
1817 }, | 1818 }, |
1818 { | 1819 { |
1819 "disable-cast", | 1820 "disable-cast", |
1820 IDS_FLAGS_DISABLE_CAST_NAME, | 1821 IDS_FLAGS_DISABLE_CAST_NAME, |
1821 IDS_FLAGS_DISABLE_CAST_DESCRIPTION, | 1822 IDS_FLAGS_DISABLE_CAST_DESCRIPTION, |
1822 kOsAndroid, | 1823 kOsAndroid, |
1823 SINGLE_VALUE_TYPE(switches::kDisableCast) | 1824 SINGLE_VALUE_TYPE(switches::kDisableCast) |
1824 }, | 1825 }, |
1825 #endif | 1826 #endif |
1826 { | 1827 { |
(...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2377 } | 2378 } |
2378 | 2379 |
2379 const Experiment* GetExperiments(size_t* count) { | 2380 const Experiment* GetExperiments(size_t* count) { |
2380 *count = num_experiments; | 2381 *count = num_experiments; |
2381 return experiments; | 2382 return experiments; |
2382 } | 2383 } |
2383 | 2384 |
2384 } // namespace testing | 2385 } // namespace testing |
2385 | 2386 |
2386 } // namespace about_flags | 2387 } // namespace about_flags |
OLD | NEW |