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

Side by Side Diff: chrome/common/pref_names.cc

Issue 10983010: FontScaleFactor and ForceEnableZoom pref_names. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added missing variables to WebPreferences Created 8 years, 3 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 | « chrome/common/pref_names.h ('k') | webkit/glue/webpreferences.h » ('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/common/pref_names.h" 5 #include "chrome/common/pref_names.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 8
9 namespace prefs { 9 namespace prefs {
10 10
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 const char kWebKitUsesUniversalDetector[] = 263 const char kWebKitUsesUniversalDetector[] =
264 "webkit.webprefs.uses_universal_detector"; 264 "webkit.webprefs.uses_universal_detector";
265 const char kWebKitTextAreasAreResizable[] = 265 const char kWebKitTextAreasAreResizable[] =
266 "webkit.webprefs.text_areas_are_resizable"; 266 "webkit.webprefs.text_areas_are_resizable";
267 const char kWebKitJavaEnabled[] = "webkit.webprefs.java_enabled"; 267 const char kWebKitJavaEnabled[] = "webkit.webprefs.java_enabled";
268 const char kWebkitTabsToLinks[] = "webkit.webprefs.tabs_to_links"; 268 const char kWebkitTabsToLinks[] = "webkit.webprefs.tabs_to_links";
269 const char kWebKitAllowDisplayingInsecureContent[] = 269 const char kWebKitAllowDisplayingInsecureContent[] =
270 "webkit.webprefs.allow_displaying_insecure_content"; 270 "webkit.webprefs.allow_displaying_insecure_content";
271 const char kWebKitAllowRunningInsecureContent[] = 271 const char kWebKitAllowRunningInsecureContent[] =
272 "webkit.webprefs.allow_running_insecure_content"; 272 "webkit.webprefs.allow_running_insecure_content";
273 #if defined(OS_ANDROID)
274 const char kWebKitFontScaleFactor[] = "webkit.webprefs.font_scale_factor";
275 const char kWebKitForceEnableZoom[] = "webkit.webprefs.force_enable_zoom";
276 #endif
273 277
274 const char kWebKitCommonScript[] = "Zyyy"; 278 const char kWebKitCommonScript[] = "Zyyy";
275 const char kWebKitStandardFontFamily[] = "webkit.webprefs.fonts.standard.Zyyy"; 279 const char kWebKitStandardFontFamily[] = "webkit.webprefs.fonts.standard.Zyyy";
276 const char kWebKitFixedFontFamily[] = "webkit.webprefs.fonts.fixed.Zyyy"; 280 const char kWebKitFixedFontFamily[] = "webkit.webprefs.fonts.fixed.Zyyy";
277 const char kWebKitSerifFontFamily[] = "webkit.webprefs.fonts.serif.Zyyy"; 281 const char kWebKitSerifFontFamily[] = "webkit.webprefs.fonts.serif.Zyyy";
278 const char kWebKitSansSerifFontFamily[] = 282 const char kWebKitSansSerifFontFamily[] =
279 "webkit.webprefs.fonts.sansserif.Zyyy"; 283 "webkit.webprefs.fonts.sansserif.Zyyy";
280 const char kWebKitCursiveFontFamily[] = "webkit.webprefs.fonts.cursive.Zyyy"; 284 const char kWebKitCursiveFontFamily[] = "webkit.webprefs.fonts.cursive.Zyyy";
281 const char kWebKitFantasyFontFamily[] = "webkit.webprefs.fonts.fantasy.Zyyy"; 285 const char kWebKitFantasyFontFamily[] = "webkit.webprefs.fonts.fantasy.Zyyy";
282 const char kWebKitDefaultFontSize[] = "webkit.webprefs.default_font_size"; 286 const char kWebKitDefaultFontSize[] = "webkit.webprefs.default_font_size";
(...skipping 1769 matching lines...) Expand 10 before | Expand all | Expand 10 after
2052 // Tracks the time of the last shown warning. Used to reset 2056 // Tracks the time of the last shown warning. Used to reset
2053 // |network_profile.warnings_left| after a silence period. 2057 // |network_profile.warnings_left| after a silence period.
2054 const char kNetworkProfileLastWarningTime[] = 2058 const char kNetworkProfileLastWarningTime[] =
2055 "network_profile.last_warning_time"; 2059 "network_profile.last_warning_time";
2056 2060
2057 // 64-bit serialization of the time last policy usage statistics were collected 2061 // 64-bit serialization of the time last policy usage statistics were collected
2058 // by UMA_HISTOGRAM_ENUMERATION. 2062 // by UMA_HISTOGRAM_ENUMERATION.
2059 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; 2063 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update";
2060 2064
2061 } // namespace prefs 2065 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | webkit/glue/webpreferences.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698