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 2180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2191 "overscroll.vertical_threshold_complete"; | 2191 "overscroll.vertical_threshold_complete"; |
2192 const char kOverscrollMinimumThresholdStart[] = | 2192 const char kOverscrollMinimumThresholdStart[] = |
2193 "overscroll.minimum_threshold_start"; | 2193 "overscroll.minimum_threshold_start"; |
2194 const char kOverscrollHorizontalResistThreshold[] = | 2194 const char kOverscrollHorizontalResistThreshold[] = |
2195 "overscroll.horizontal_resist_threshold"; | 2195 "overscroll.horizontal_resist_threshold"; |
2196 const char kOverscrollVerticalResistThreshold[] = | 2196 const char kOverscrollVerticalResistThreshold[] = |
2197 "overscroll.vertical_resist_threshold"; | 2197 "overscroll.vertical_resist_threshold"; |
2198 #endif | 2198 #endif |
2199 | 2199 |
2200 // Indicates whether the browser is in managed mode. | 2200 // Indicates whether the browser is in managed mode. |
2201 const char kInManagedMode[] = "managed_mode"; | 2201 const char kInManagedMode[] = "managed_mode"; |
Bernhard Bauer
2013/01/07 17:31:49
Can you also move these?
Sergiu
2013/01/08 09:31:54
Done.
| |
2202 // List of pages that are manually approved. | |
2203 const char kManagedModeWhitelist[] = "profile.managed.whitelist"; | |
2204 // List of pages that are manually blocked. | |
2205 const char kManagedModeBlacklist[] = "profile.managed.blacklist"; | |
2202 | 2206 |
2203 // Counts how many more times the 'profile on a network share' warning should be | 2207 // Counts how many more times the 'profile on a network share' warning should be |
2204 // shown to the user before the next silence period. | 2208 // shown to the user before the next silence period. |
2205 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; | 2209 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; |
2206 // Tracks the time of the last shown warning. Used to reset | 2210 // Tracks the time of the last shown warning. Used to reset |
2207 // |network_profile.warnings_left| after a silence period. | 2211 // |network_profile.warnings_left| after a silence period. |
2208 const char kNetworkProfileLastWarningTime[] = | 2212 const char kNetworkProfileLastWarningTime[] = |
2209 "network_profile.last_warning_time"; | 2213 "network_profile.last_warning_time"; |
2210 | 2214 |
2211 // 64-bit serialization of the time last policy usage statistics were collected | 2215 // 64-bit serialization of the time last policy usage statistics were collected |
2212 // by UMA_HISTOGRAM_ENUMERATION. | 2216 // by UMA_HISTOGRAM_ENUMERATION. |
2213 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2217 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
2214 | 2218 |
2215 #if defined(OS_CHROMEOS) | 2219 #if defined(OS_CHROMEOS) |
2216 // The RLZ brand code, if enabled. | 2220 // The RLZ brand code, if enabled. |
2217 const char kRLZBrand[] = "rlz.brand"; | 2221 const char kRLZBrand[] = "rlz.brand"; |
2218 // Whether RLZ pings are disabled. | 2222 // Whether RLZ pings are disabled. |
2219 const char kRLZDisabled[] = "rlz.disabled"; | 2223 const char kRLZDisabled[] = "rlz.disabled"; |
2220 #endif | 2224 #endif |
2221 | 2225 |
2222 } // namespace prefs | 2226 } // namespace prefs |
OLD | NEW |