| OLD | NEW |
| 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 2437 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2448 const char kFlingMaxCancelToDownTimeInMs[] = | 2448 const char kFlingMaxCancelToDownTimeInMs[] = |
| 2449 "gesture.fling_max_cancel_to_down_time_in_ms"; | 2449 "gesture.fling_max_cancel_to_down_time_in_ms"; |
| 2450 const char kFlingMaxTapGapTimeInMs[] = | 2450 const char kFlingMaxTapGapTimeInMs[] = |
| 2451 "gesture.fling_max_tap_gap_time_in_ms"; | 2451 "gesture.fling_max_tap_gap_time_in_ms"; |
| 2452 const char kOverscrollHorizontalThresholdComplete[] = | 2452 const char kOverscrollHorizontalThresholdComplete[] = |
| 2453 "overscroll.horizontal_threshold_complete"; | 2453 "overscroll.horizontal_threshold_complete"; |
| 2454 const char kOverscrollVerticalThresholdComplete[] = | 2454 const char kOverscrollVerticalThresholdComplete[] = |
| 2455 "overscroll.vertical_threshold_complete"; | 2455 "overscroll.vertical_threshold_complete"; |
| 2456 const char kOverscrollMinimumThresholdStart[] = | 2456 const char kOverscrollMinimumThresholdStart[] = |
| 2457 "overscroll.minimum_threshold_start"; | 2457 "overscroll.minimum_threshold_start"; |
| 2458 const char kOverscrollVerticalThresholdStart[] = |
| 2459 "overscroll.vertical_threshold_start"; |
| 2458 const char kOverscrollHorizontalResistThreshold[] = | 2460 const char kOverscrollHorizontalResistThreshold[] = |
| 2459 "overscroll.horizontal_resist_threshold"; | 2461 "overscroll.horizontal_resist_threshold"; |
| 2460 const char kOverscrollVerticalResistThreshold[] = | 2462 const char kOverscrollVerticalResistThreshold[] = |
| 2461 "overscroll.vertical_resist_threshold"; | 2463 "overscroll.vertical_resist_threshold"; |
| 2462 #endif | 2464 #endif |
| 2463 | 2465 |
| 2464 // Counts how many more times the 'profile on a network share' warning should be | 2466 // Counts how many more times the 'profile on a network share' warning should be |
| 2465 // shown to the user before the next silence period. | 2467 // shown to the user before the next silence period. |
| 2466 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; | 2468 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; |
| 2467 // Tracks the time of the last shown warning. Used to reset | 2469 // Tracks the time of the last shown warning. Used to reset |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2500 | 2502 |
| 2501 // How often the bubble has been shown. | 2503 // How often the bubble has been shown. |
| 2502 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown"; | 2504 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown"; |
| 2503 | 2505 |
| 2504 // A string pref for storing the salt used to compute the pepper device ID. | 2506 // A string pref for storing the salt used to compute the pepper device ID. |
| 2505 const char kDRMSalt[] = "settings.privacy.drm_salt"; | 2507 const char kDRMSalt[] = "settings.privacy.drm_salt"; |
| 2506 // A boolean pref that enables the (private) pepper GetDeviceID() call. | 2508 // A boolean pref that enables the (private) pepper GetDeviceID() call. |
| 2507 const char kEnableDRM[] = "settings.privacy.drm_enabled"; | 2509 const char kEnableDRM[] = "settings.privacy.drm_enabled"; |
| 2508 | 2510 |
| 2509 } // namespace prefs | 2511 } // namespace prefs |
| OLD | NEW |