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

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

Issue 868753005: Enable Roboto by default for testing purpose. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Modify the test TextDoesntClip. Created 5 years, 10 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
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/test/data/chromeos/oobe_webui_browsertest.js » ('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 <iterator> 7 #include <iterator>
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <utility> 10 #include <utility>
(...skipping 2065 matching lines...) Expand 10 before | Expand all | Expand 10 after
2076 }, 2076 },
2077 #if defined(OS_CHROMEOS) 2077 #if defined(OS_CHROMEOS)
2078 { 2078 {
2079 "enable-captive-portal-bypass-proxy", 2079 "enable-captive-portal-bypass-proxy",
2080 IDS_FLAGS_ENABLE_CAPTIVE_PORTAL_BYPASS_PROXY_NAME, 2080 IDS_FLAGS_ENABLE_CAPTIVE_PORTAL_BYPASS_PROXY_NAME,
2081 IDS_FLAGS_ENABLE_CAPTIVE_PORTAL_BYPASS_PROXY_DESCRIPTION, 2081 IDS_FLAGS_ENABLE_CAPTIVE_PORTAL_BYPASS_PROXY_DESCRIPTION,
2082 kOsCrOS, 2082 kOsCrOS,
2083 SINGLE_VALUE_TYPE(chromeos::switches::kEnableCaptivePortalBypassProxy) 2083 SINGLE_VALUE_TYPE(chromeos::switches::kEnableCaptivePortalBypassProxy)
2084 }, 2084 },
2085 { 2085 {
2086 "enable-roboto-font-ui", 2086 "disable-roboto-font-ui",
2087 IDS_FLAGS_ENABLE_ROBOTO_FONT_UI_NAME, 2087 IDS_FLAGS_DISABLE_ROBOTO_FONT_UI_NAME,
2088 IDS_FLAGS_ENABLE_ROBOTO_FONT_UI_DESCRIPTION, 2088 IDS_FLAGS_DISABLE_ROBOTO_FONT_UI_DESCRIPTION,
2089 kOsCrOS, 2089 kOsCrOS,
2090 SINGLE_VALUE_TYPE(switches::kEnableRobotoFontUI) 2090 SINGLE_VALUE_TYPE(switches::kDisableRobotoFontUI)
2091 }, 2091 },
2092 #endif // defined(OS_CHROMEOS) 2092 #endif // defined(OS_CHROMEOS)
2093 #if defined(OS_ANDROID) 2093 #if defined(OS_ANDROID)
2094 { 2094 {
2095 "enable-seccomp-filter-sandbox", 2095 "enable-seccomp-filter-sandbox",
2096 IDS_FLAGS_ENABLE_SECCOMP_FILTER_SANDBOX_ANDROID_NAME, 2096 IDS_FLAGS_ENABLE_SECCOMP_FILTER_SANDBOX_ANDROID_NAME,
2097 IDS_FLAGS_ENABLE_SECCOMP_FILTER_SANDBOX_ANDROID_DESCRIPTION, 2097 IDS_FLAGS_ENABLE_SECCOMP_FILTER_SANDBOX_ANDROID_DESCRIPTION,
2098 kOsAndroid, 2098 kOsAndroid,
2099 SINGLE_VALUE_TYPE(switches::kEnableSeccompFilterSandbox) 2099 SINGLE_VALUE_TYPE(switches::kEnableSeccompFilterSandbox)
2100 }, 2100 },
(...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after
2724 } 2724 }
2725 2725
2726 const Experiment* GetExperiments(size_t* count) { 2726 const Experiment* GetExperiments(size_t* count) {
2727 *count = num_experiments; 2727 *count = num_experiments;
2728 return experiments; 2728 return experiments;
2729 } 2729 }
2730 2730
2731 } // namespace testing 2731 } // namespace testing
2732 2732
2733 } // namespace about_flags 2733 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/test/data/chromeos/oobe_webui_browsertest.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698