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

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

Issue 18603008: Seperate horizontal and vertical overscrolling (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Made changes requested by sadrul Created 7 years, 5 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
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 2433 matching lines...) Expand 10 before | Expand all | Expand 10 after
2444 const char kFlingMaxCancelToDownTimeInMs[] = 2444 const char kFlingMaxCancelToDownTimeInMs[] =
2445 "gesture.fling_max_cancel_to_down_time_in_ms"; 2445 "gesture.fling_max_cancel_to_down_time_in_ms";
2446 const char kFlingMaxTapGapTimeInMs[] = 2446 const char kFlingMaxTapGapTimeInMs[] =
2447 "gesture.fling_max_tap_gap_time_in_ms"; 2447 "gesture.fling_max_tap_gap_time_in_ms";
2448 const char kOverscrollHorizontalThresholdComplete[] = 2448 const char kOverscrollHorizontalThresholdComplete[] =
2449 "overscroll.horizontal_threshold_complete"; 2449 "overscroll.horizontal_threshold_complete";
2450 const char kOverscrollVerticalThresholdComplete[] = 2450 const char kOverscrollVerticalThresholdComplete[] =
2451 "overscroll.vertical_threshold_complete"; 2451 "overscroll.vertical_threshold_complete";
2452 const char kOverscrollMinimumThresholdStart[] = 2452 const char kOverscrollMinimumThresholdStart[] =
2453 "overscroll.minimum_threshold_start"; 2453 "overscroll.minimum_threshold_start";
2454 const char kOverscrollVerticalThresholdStart[] =
2455 "overscroll.vertical_threshold_start";
2454 const char kOverscrollHorizontalResistThreshold[] = 2456 const char kOverscrollHorizontalResistThreshold[] =
2455 "overscroll.horizontal_resist_threshold"; 2457 "overscroll.horizontal_resist_threshold";
2456 const char kOverscrollVerticalResistThreshold[] = 2458 const char kOverscrollVerticalResistThreshold[] =
2457 "overscroll.vertical_resist_threshold"; 2459 "overscroll.vertical_resist_threshold";
2458 #endif 2460 #endif
2459 2461
2460 // Counts how many more times the 'profile on a network share' warning should be 2462 // Counts how many more times the 'profile on a network share' warning should be
2461 // shown to the user before the next silence period. 2463 // shown to the user before the next silence period.
2462 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; 2464 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left";
2463 // Tracks the time of the last shown warning. Used to reset 2465 // Tracks the time of the last shown warning. Used to reset
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
2496 2498
2497 // How often the bubble has been shown. 2499 // How often the bubble has been shown.
2498 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown"; 2500 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown";
2499 2501
2500 // A string pref for storing the salt used to compute the pepper device ID. 2502 // A string pref for storing the salt used to compute the pepper device ID.
2501 const char kDRMSalt[] = "settings.privacy.drm_salt"; 2503 const char kDRMSalt[] = "settings.privacy.drm_salt";
2502 // A boolean pref that enables the (private) pepper GetDeviceID() call. 2504 // A boolean pref that enables the (private) pepper GetDeviceID() call.
2503 const char kEnableDRM[] = "settings.privacy.drm_enabled"; 2505 const char kEnableDRM[] = "settings.privacy.drm_enabled";
2504 2506
2505 } // namespace prefs 2507 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698