Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(16)

Side by Side Diff: chrome/browser/about_flags.cc

Issue 203473003: [FastTextAutosizer] Enable FastTextAutosizer on tot/dev by default (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Indent Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/android/chrome_startup_flags.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/android/chrome_startup_flags.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698