| 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 2186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2197 const char kLogoutDialogDurationMs[] = "logout_dialog_duration_ms"; | 2197 const char kLogoutDialogDurationMs[] = "logout_dialog_duration_ms"; |
| 2198 const char kPinnedLauncherApps[] = "pinned_launcher_apps"; | 2198 const char kPinnedLauncherApps[] = "pinned_launcher_apps"; |
| 2199 // Boolean value indicating whether to show a logout button in the ash tray. | 2199 // Boolean value indicating whether to show a logout button in the ash tray. |
| 2200 const char kShowLogoutButtonInTray[] = "show_logout_button_in_tray"; | 2200 const char kShowLogoutButtonInTray[] = "show_logout_button_in_tray"; |
| 2201 #endif | 2201 #endif |
| 2202 | 2202 |
| 2203 #if defined(USE_AURA) | 2203 #if defined(USE_AURA) |
| 2204 // Tuning settings for gestures. | 2204 // Tuning settings for gestures. |
| 2205 const char kMaxSeparationForGestureTouchesInPixels[] = | 2205 const char kMaxSeparationForGestureTouchesInPixels[] = |
| 2206 "gesture.max_separation_for_gesture_touches_in_pixels"; | 2206 "gesture.max_separation_for_gesture_touches_in_pixels"; |
| 2207 const char kSemiLongPressTimeInSeconds[] = | 2207 const char kSemiLongPressTimeInMs[] = "gesture.semi_long_press_time_in_ms"; |
| 2208 "gesture.semi_long_press_time_in_seconds"; | 2208 const char kTabScrubActivationDelayInMs[] = |
| 2209 const char kTabScrubActivationDelayInMS[] = | |
| 2210 "gesture.tab_scrub_activation_delay_in_ms"; | 2209 "gesture.tab_scrub_activation_delay_in_ms"; |
| 2211 const char kFlingMaxCancelToDownTimeInMs[] = | 2210 const char kFlingMaxCancelToDownTimeInMs[] = |
| 2212 "gesture.fling_max_cancel_to_down_time_in_ms"; | 2211 "gesture.fling_max_cancel_to_down_time_in_ms"; |
| 2213 const char kFlingMaxTapGapTimeInMs[] = | 2212 const char kFlingMaxTapGapTimeInMs[] = "gesture.fling_max_tap_gap_time_in_ms"; |
| 2214 "gesture.fling_max_tap_gap_time_in_ms"; | |
| 2215 const char kOverscrollHorizontalThresholdComplete[] = | 2213 const char kOverscrollHorizontalThresholdComplete[] = |
| 2216 "overscroll.horizontal_threshold_complete"; | 2214 "overscroll.horizontal_threshold_complete"; |
| 2217 const char kOverscrollVerticalThresholdComplete[] = | 2215 const char kOverscrollVerticalThresholdComplete[] = |
| 2218 "overscroll.vertical_threshold_complete"; | 2216 "overscroll.vertical_threshold_complete"; |
| 2219 const char kOverscrollMinimumThresholdStart[] = | 2217 const char kOverscrollMinimumThresholdStart[] = |
| 2220 "overscroll.minimum_threshold_start"; | 2218 "overscroll.minimum_threshold_start"; |
| 2221 const char kOverscrollMinimumThresholdStartTouchpad[] = | 2219 const char kOverscrollMinimumThresholdStartTouchpad[] = |
| 2222 "overscroll.minimum_threshold_start_touchpad"; | 2220 "overscroll.minimum_threshold_start_touchpad"; |
| 2223 const char kOverscrollVerticalThresholdStart[] = | 2221 const char kOverscrollVerticalThresholdStart[] = |
| 2224 "overscroll.vertical_threshold_start"; | 2222 "overscroll.vertical_threshold_start"; |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2335 // Whether Guest Mode is enabled within the browser. | 2333 // Whether Guest Mode is enabled within the browser. |
| 2336 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; | 2334 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; |
| 2337 | 2335 |
| 2338 // Whether Adding a new Person is enabled within the user manager. | 2336 // Whether Adding a new Person is enabled within the user manager. |
| 2339 const char kBrowserAddPersonEnabled[] = "profile.add_person_enabled"; | 2337 const char kBrowserAddPersonEnabled[] = "profile.add_person_enabled"; |
| 2340 | 2338 |
| 2341 // A dictionary that maps user id to hardlock state. | 2339 // A dictionary that maps user id to hardlock state. |
| 2342 const char kEasyUnlockHardlockState[] = "easy_unlock.hardlock_state"; | 2340 const char kEasyUnlockHardlockState[] = "easy_unlock.hardlock_state"; |
| 2343 | 2341 |
| 2344 } // namespace prefs | 2342 } // namespace prefs |
| OLD | NEW |