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 2114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2125 const char kShelfAutoHideBehaviorLocal[] = "auto_hide_behavior_local"; | 2125 const char kShelfAutoHideBehaviorLocal[] = "auto_hide_behavior_local"; |
2126 const char kPinnedLauncherApps[] = "pinned_launcher_apps"; | 2126 const char kPinnedLauncherApps[] = "pinned_launcher_apps"; |
2127 // Boolean value indicating whether to show a logout button in the ash tray. | 2127 // Boolean value indicating whether to show a logout button in the ash tray. |
2128 const char kShowLogoutButtonInTray[] = "show_logout_button_in_tray"; | 2128 const char kShowLogoutButtonInTray[] = "show_logout_button_in_tray"; |
2129 // Dictionary value that holds per-display preference of shelf alignment and | 2129 // Dictionary value that holds per-display preference of shelf alignment and |
2130 // auto-hide behavior. Key of the dictionary is the id of the display, and | 2130 // auto-hide behavior. Key of the dictionary is the id of the display, and |
2131 // its value is a dictionary whose keys are kShelfAlignment and | 2131 // its value is a dictionary whose keys are kShelfAlignment and |
2132 // kShelfAutoHideBehavior. | 2132 // kShelfAutoHideBehavior. |
2133 const char kShelfPreferences[] = "shelf_preferences"; | 2133 const char kShelfPreferences[] = "shelf_preferences"; |
2134 | 2134 |
| 2135 const char kFlingMaxCancelToDownTimeInMs[] = |
| 2136 "gesture.fling_max_cancel_to_down_time_in_ms"; |
| 2137 const char kFlingMaxTapGapTimeInMs[] = |
| 2138 "gesture.fling_max_tap_gap_time_in_ms"; |
2135 const char kFlingVelocityCap[] = "gesture.fling_velocity_cap"; | 2139 const char kFlingVelocityCap[] = "gesture.fling_velocity_cap"; |
2136 const char kLongPressTimeInSeconds[] = | 2140 const char kLongPressTimeInSeconds[] = |
2137 "gesture.long_press_time_in_seconds"; | 2141 "gesture.long_press_time_in_seconds"; |
2138 const char kMaxDistanceBetweenTapsForDoubleTap[] = | 2142 const char kMaxDistanceBetweenTapsForDoubleTap[] = |
2139 "gesture.max_distance_between_taps_for_double_tap"; | 2143 "gesture.max_distance_between_taps_for_double_tap"; |
2140 const char kMaxDistanceForTwoFingerTapInPixels[] = | 2144 const char kMaxDistanceForTwoFingerTapInPixels[] = |
2141 "gesture.max_distance_for_two_finger_tap_in_pixels"; | 2145 "gesture.max_distance_for_two_finger_tap_in_pixels"; |
2142 const char kMaxSecondsBetweenDoubleClick[] = | 2146 const char kMaxSecondsBetweenDoubleClick[] = |
2143 "gesture.max_seconds_between_double_click"; | 2147 "gesture.max_seconds_between_double_click"; |
2144 const char kMaxSeparationForGestureTouchesInPixels[] = | 2148 const char kMaxSeparationForGestureTouchesInPixels[] = |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2208 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2212 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
2209 | 2213 |
2210 #if defined(OS_CHROMEOS) | 2214 #if defined(OS_CHROMEOS) |
2211 // The RLZ brand code, if enabled. | 2215 // The RLZ brand code, if enabled. |
2212 const char kRLZBrand[] = "rlz.brand"; | 2216 const char kRLZBrand[] = "rlz.brand"; |
2213 // Whether RLZ pings are disabled. | 2217 // Whether RLZ pings are disabled. |
2214 const char kRLZDisabled[] = "rlz.disabled"; | 2218 const char kRLZDisabled[] = "rlz.disabled"; |
2215 #endif | 2219 #endif |
2216 | 2220 |
2217 } // namespace prefs | 2221 } // namespace prefs |
OLD | NEW |