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

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

Issue 15937004: Respect Android system settings for allowing the last character of a password to be displayed. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 6 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/common/pref_names.h ('k') | no next file » | 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 #include "chrome/common/pref_font_webkit_names.h" 8 #include "chrome/common/pref_font_webkit_names.h"
9 9
10 namespace prefs { 10 namespace prefs {
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 "webkit.webprefs.text_areas_are_resizable"; 273 "webkit.webprefs.text_areas_are_resizable";
274 const char kWebKitJavaEnabled[] = "webkit.webprefs.java_enabled"; 274 const char kWebKitJavaEnabled[] = "webkit.webprefs.java_enabled";
275 const char kWebkitTabsToLinks[] = "webkit.webprefs.tabs_to_links"; 275 const char kWebkitTabsToLinks[] = "webkit.webprefs.tabs_to_links";
276 const char kWebKitAllowDisplayingInsecureContent[] = 276 const char kWebKitAllowDisplayingInsecureContent[] =
277 "webkit.webprefs.allow_displaying_insecure_content"; 277 "webkit.webprefs.allow_displaying_insecure_content";
278 const char kWebKitAllowRunningInsecureContent[] = 278 const char kWebKitAllowRunningInsecureContent[] =
279 "webkit.webprefs.allow_running_insecure_content"; 279 "webkit.webprefs.allow_running_insecure_content";
280 #if defined(OS_ANDROID) 280 #if defined(OS_ANDROID)
281 const char kWebKitFontScaleFactor[] = "webkit.webprefs.font_scale_factor"; 281 const char kWebKitFontScaleFactor[] = "webkit.webprefs.font_scale_factor";
282 const char kWebKitForceEnableZoom[] = "webkit.webprefs.force_enable_zoom"; 282 const char kWebKitForceEnableZoom[] = "webkit.webprefs.force_enable_zoom";
283 const char kWebKitPasswordEchoEnabled[] =
284 "webkit.webprefs.password_echo_enabled";
283 #endif 285 #endif
284 286
285 const char kWebKitCommonScript[] = "Zyyy"; 287 const char kWebKitCommonScript[] = "Zyyy";
286 const char kWebKitStandardFontFamily[] = "webkit.webprefs.fonts.standard.Zyyy"; 288 const char kWebKitStandardFontFamily[] = "webkit.webprefs.fonts.standard.Zyyy";
287 const char kWebKitFixedFontFamily[] = "webkit.webprefs.fonts.fixed.Zyyy"; 289 const char kWebKitFixedFontFamily[] = "webkit.webprefs.fonts.fixed.Zyyy";
288 const char kWebKitSerifFontFamily[] = "webkit.webprefs.fonts.serif.Zyyy"; 290 const char kWebKitSerifFontFamily[] = "webkit.webprefs.fonts.serif.Zyyy";
289 const char kWebKitSansSerifFontFamily[] = 291 const char kWebKitSansSerifFontFamily[] =
290 "webkit.webprefs.fonts.sansserif.Zyyy"; 292 "webkit.webprefs.fonts.sansserif.Zyyy";
291 const char kWebKitCursiveFontFamily[] = "webkit.webprefs.fonts.cursive.Zyyy"; 293 const char kWebKitCursiveFontFamily[] = "webkit.webprefs.fonts.cursive.Zyyy";
292 const char kWebKitFantasyFontFamily[] = "webkit.webprefs.fonts.fantasy.Zyyy"; 294 const char kWebKitFantasyFontFamily[] = "webkit.webprefs.fonts.fantasy.Zyyy";
(...skipping 2163 matching lines...) Expand 10 before | Expand all | Expand 10 after
2456 // ping and the time of the last ping. 2458 // ping and the time of the last ping.
2457 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count"; 2459 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count";
2458 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; 2460 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping";
2459 2461
2460 // A string pref for storing the salt used to compute the pepper device ID. 2462 // A string pref for storing the salt used to compute the pepper device ID.
2461 const char kDRMSalt[] = "settings.privacy.drm_salt"; 2463 const char kDRMSalt[] = "settings.privacy.drm_salt";
2462 // A boolean pref that enables the (private) pepper GetDeviceID() call. 2464 // A boolean pref that enables the (private) pepper GetDeviceID() call.
2463 const char kEnableDRM[] = "settings.privacy.drm_enabled"; 2465 const char kEnableDRM[] = "settings.privacy.drm_enabled";
2464 2466
2465 } // namespace prefs 2467 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698