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

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

Issue 21983002: Add a pref for a one-time wipe of gesture prefs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Updated comments Created 7 years, 4 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') | 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 2445 matching lines...) Expand 10 before | Expand all | Expand 10 after
2456 const char kOverscrollVerticalThresholdComplete[] = 2456 const char kOverscrollVerticalThresholdComplete[] =
2457 "overscroll.vertical_threshold_complete"; 2457 "overscroll.vertical_threshold_complete";
2458 const char kOverscrollMinimumThresholdStart[] = 2458 const char kOverscrollMinimumThresholdStart[] =
2459 "overscroll.minimum_threshold_start"; 2459 "overscroll.minimum_threshold_start";
2460 const char kOverscrollVerticalThresholdStart[] = 2460 const char kOverscrollVerticalThresholdStart[] =
2461 "overscroll.vertical_threshold_start"; 2461 "overscroll.vertical_threshold_start";
2462 const char kOverscrollHorizontalResistThreshold[] = 2462 const char kOverscrollHorizontalResistThreshold[] =
2463 "overscroll.horizontal_resist_threshold"; 2463 "overscroll.horizontal_resist_threshold";
2464 const char kOverscrollVerticalResistThreshold[] = 2464 const char kOverscrollVerticalResistThreshold[] =
2465 "overscroll.vertical_resist_threshold"; 2465 "overscroll.vertical_resist_threshold";
2466 // TODO(mohsen): Remove following pref in M32. By then, gesture prefs will have
2467 // been cleared for majority of the users: crbug.com/269292.
2468 // A temporary pref to do a one-time wipe of gesture preferences.
2469 const char kGestureConfigIsTrustworthy[] = "gesture.config_is_trustworthy";
2466 #endif 2470 #endif
2467 2471
2468 // Counts how many more times the 'profile on a network share' warning should be 2472 // Counts how many more times the 'profile on a network share' warning should be
2469 // shown to the user before the next silence period. 2473 // shown to the user before the next silence period.
2470 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; 2474 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left";
2471 // Tracks the time of the last shown warning. Used to reset 2475 // Tracks the time of the last shown warning. Used to reset
2472 // |network_profile.warnings_left| after a silence period. 2476 // |network_profile.warnings_left| after a silence period.
2473 const char kNetworkProfileLastWarningTime[] = 2477 const char kNetworkProfileLastWarningTime[] =
2474 "network_profile.last_warning_time"; 2478 "network_profile.last_warning_time";
2475 2479
(...skipping 28 matching lines...) Expand all
2504 2508
2505 // How often the bubble has been shown. 2509 // How often the bubble has been shown.
2506 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown"; 2510 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown";
2507 2511
2508 // A string pref for storing the salt used to compute the pepper device ID. 2512 // A string pref for storing the salt used to compute the pepper device ID.
2509 const char kDRMSalt[] = "settings.privacy.drm_salt"; 2513 const char kDRMSalt[] = "settings.privacy.drm_salt";
2510 // A boolean pref that enables the (private) pepper GetDeviceID() call. 2514 // A boolean pref that enables the (private) pepper GetDeviceID() call.
2511 const char kEnableDRM[] = "settings.privacy.drm_enabled"; 2515 const char kEnableDRM[] = "settings.privacy.drm_enabled";
2512 2516
2513 } // namespace prefs 2517 } // 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