OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef COMPONENTS_POLICY_CORE_COMMON_PREF_NAMES_H_ | |
6 #define COMPONENTS_POLICY_CORE_COMMON_PREF_NAMES_H_ | |
7 | |
8 #include "components/policy/policy_export.h" | |
9 | |
10 namespace policy { | |
11 namespace prefs { | |
12 | |
13 // Constants for the names of policy-related preferences. | |
14 POLICY_EXPORT extern const char kLastPolicyStatisticsUpdate[]; | |
Joao da Silva
2013/09/18 13:36:13
Leave a TODO here pointing to the same bug and ind
dconnelly
2013/09/19 09:12:55
Done.
| |
15 | |
16 } // prefs | |
17 } // namespace policy | |
18 | |
19 #endif // COMPONENTS_POLICY_CORE_COMMON_PREF_NAMES_H_ | |
OLD | NEW |