| 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 1917 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1928 const char kMinSwipeSpeed[] = | 1928 const char kMinSwipeSpeed[] = |
| 1929 "gesture.min_swipe_speed"; | 1929 "gesture.min_swipe_speed"; |
| 1930 const char kMinTouchDownDurationInSecondsForClick[] = | 1930 const char kMinTouchDownDurationInSecondsForClick[] = |
| 1931 "gesture.min_touch_down_duration_in_seconds_for_click"; | 1931 "gesture.min_touch_down_duration_in_seconds_for_click"; |
| 1932 const char kPointsBufferedForVelocity[] = | 1932 const char kPointsBufferedForVelocity[] = |
| 1933 "gesture.points_buffered_for_velocity"; | 1933 "gesture.points_buffered_for_velocity"; |
| 1934 const char kRailBreakProportion[] = | 1934 const char kRailBreakProportion[] = |
| 1935 "gesture.rail_break_proportion"; | 1935 "gesture.rail_break_proportion"; |
| 1936 const char kRailStartProportion[] = | 1936 const char kRailStartProportion[] = |
| 1937 "gesture.rail_start_proportion"; | 1937 "gesture.rail_start_proportion"; |
| 1938 const char kSemiLongPressTimeInSeconds[] = |
| 1939 "gesture.semi_long_press_time_in_seconds"; |
| 1938 #endif | 1940 #endif |
| 1939 | 1941 |
| 1940 // Indicates whether the browser is in managed mode. | 1942 // Indicates whether the browser is in managed mode. |
| 1941 const char kInManagedMode[] = "managed_mode"; | 1943 const char kInManagedMode[] = "managed_mode"; |
| 1942 | 1944 |
| 1943 // Counts how many more times the 'profile on a network share' warning should be | 1945 // Counts how many more times the 'profile on a network share' warning should be |
| 1944 // shown to the user before the next silence period. | 1946 // shown to the user before the next silence period. |
| 1945 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; | 1947 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; |
| 1946 // Tracks the time of the last shown warning. Used to reset | 1948 // Tracks the time of the last shown warning. Used to reset |
| 1947 // |network_profile.warnings_left| after a silence period. | 1949 // |network_profile.warnings_left| after a silence period. |
| 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 |