Chromium Code Reviews| 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 2005 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2016 const char kInManagedMode[] = "managed_mode"; | 2016 const char kInManagedMode[] = "managed_mode"; |
| 2017 | 2017 |
| 2018 // Counts how many more times the 'profile on a network share' warning should be | 2018 // Counts how many more times the 'profile on a network share' warning should be |
| 2019 // shown to the user before the next silence period. | 2019 // shown to the user before the next silence period. |
| 2020 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; | 2020 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; |
| 2021 // Tracks the time of the last shown warning. Used to reset | 2021 // Tracks the time of the last shown warning. Used to reset |
| 2022 // |network_profile.warnings_left| after a silence period. | 2022 // |network_profile.warnings_left| after a silence period. |
| 2023 const char kNetworkProfileLastWarningTime[] = | 2023 const char kNetworkProfileLastWarningTime[] = |
| 2024 "network_profile.last_warning_time"; | 2024 "network_profile.last_warning_time"; |
| 2025 | 2025 |
| 2026 // 64-bit serialization of the time last policy usage statistics were collected | |
| 2027 // by UMA_HISTOGRAM_ENUMERATION. | |
| 2028 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | |
| 2029 | |
|
Mattias Nissler (ping if slow)
2012/09/12 13:06:27
remove extra blank line
qfel
2012/09/18 11:30:56
Done.
| |
| 2030 | |
| 2026 } // namespace prefs | 2031 } // namespace prefs |
| OLD | NEW |