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 1831 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1842 "gesture.points_buffered_for_velocity"; | 1842 "gesture.points_buffered_for_velocity"; |
1843 const char kRailBreakProportion[] = | 1843 const char kRailBreakProportion[] = |
1844 "gesture.rail_break_proportion"; | 1844 "gesture.rail_break_proportion"; |
1845 const char kRailStartProportion[] = | 1845 const char kRailStartProportion[] = |
1846 "gesture.rail_start_proportion"; | 1846 "gesture.rail_start_proportion"; |
1847 #endif | 1847 #endif |
1848 | 1848 |
1849 // Indicates whether the browser is in managed mode. | 1849 // Indicates whether the browser is in managed mode. |
1850 const char kInManagedMode[] = "managed_mode"; | 1850 const char kInManagedMode[] = "managed_mode"; |
1851 | 1851 |
| 1852 // String serialized form of variations seed protobuf |
| 1853 const char kVariationsSeed[] = "variations_seed"; |
| 1854 |
1852 } // namespace prefs | 1855 } // namespace prefs |
OLD | NEW |