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 | 8 |
9 namespace prefs { | 9 namespace prefs { |
10 | 10 |
(...skipping 1885 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1896 // String value corresponding to ash::Shell::ShelfAutoHideBehavior. | 1896 // String value corresponding to ash::Shell::ShelfAutoHideBehavior. |
1897 const char kShelfAutoHideBehavior[] = | 1897 const char kShelfAutoHideBehavior[] = |
1898 "auto_hide_behavior"; | 1898 "auto_hide_behavior"; |
1899 // Boolean value indicating whether to use default pinned apps. | 1899 // Boolean value indicating whether to use default pinned apps. |
1900 const char kUseDefaultPinnedApps[] = "use_default_pinned_apps"; | 1900 const char kUseDefaultPinnedApps[] = "use_default_pinned_apps"; |
1901 const char kPinnedLauncherApps[] = | 1901 const char kPinnedLauncherApps[] = |
1902 "pinned_launcher_apps"; | 1902 "pinned_launcher_apps"; |
1903 | 1903 |
1904 const char kLongPressTimeInSeconds[] = | 1904 const char kLongPressTimeInSeconds[] = |
1905 "gesture.long_press_time_in_seconds"; | 1905 "gesture.long_press_time_in_seconds"; |
| 1906 const char kShortLongPressTimeInSeconds[] = |
| 1907 "gesture.short_long_press_time_in_seconds"; |
1906 const char kMaxDistanceForTwoFingerTapInPixels[] = | 1908 const char kMaxDistanceForTwoFingerTapInPixels[] = |
1907 "gesture.max_distance_for_two_finger_tap_in_pixels"; | 1909 "gesture.max_distance_for_two_finger_tap_in_pixels"; |
1908 const char kMaxSecondsBetweenDoubleClick[] = | 1910 const char kMaxSecondsBetweenDoubleClick[] = |
1909 "gesture.max_seconds_between_double_click"; | 1911 "gesture.max_seconds_between_double_click"; |
1910 const char kMaxSeparationForGestureTouchesInPixels[] = | 1912 const char kMaxSeparationForGestureTouchesInPixels[] = |
1911 "gesture.max_separation_for_gesture_touches_in_pixels"; | 1913 "gesture.max_separation_for_gesture_touches_in_pixels"; |
1912 const char kMaxSwipeDeviationRatio[] = | 1914 const char kMaxSwipeDeviationRatio[] = |
1913 "gesture.max_swipe_deviation_ratio"; | 1915 "gesture.max_swipe_deviation_ratio"; |
1914 const char kMaxTouchDownDurationInSecondsForClick[] = | 1916 const char kMaxTouchDownDurationInSecondsForClick[] = |
1915 "gesture.max_touch_down_duration_in_seconds_for_click"; | 1917 "gesture.max_touch_down_duration_in_seconds_for_click"; |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1948 const char kNetworkProfileLastWarningTime[] = | 1950 const char kNetworkProfileLastWarningTime[] = |
1949 "network_profile.last_warning_time"; | 1951 "network_profile.last_warning_time"; |
1950 | 1952 |
1951 #if defined(OS_MACOSX) | 1953 #if defined(OS_MACOSX) |
1952 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. | 1954 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. |
1953 const char kMacLeopardObsoleteInfobarLastShown[] = | 1955 const char kMacLeopardObsoleteInfobarLastShown[] = |
1954 "mac_105_obsolete_infobar_last_shown"; | 1956 "mac_105_obsolete_infobar_last_shown"; |
1955 #endif // defined(OS_MACOSX) | 1957 #endif // defined(OS_MACOSX) |
1956 | 1958 |
1957 } // namespace prefs | 1959 } // namespace prefs |
OLD | NEW |