Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(91)

Side by Side Diff: chrome/browser/policy/configuration_policy_store_interface.h

Issue 6409040: New policy protobuf protocol. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Ready for review! Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #ifndef CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_STORE_INTERFACE_H_ 5 #ifndef CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_STORE_INTERFACE_H_
6 #define CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_STORE_INTERFACE_H_ 6 #define CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_STORE_INTERFACE_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 // configuration_policy_type.h is generated. See policy_template.json for 10 // configuration_policy_type.h is generated. See policy_templates.json for
11 // policy definitions. 11 // policy definitions.
Mattias Nissler (ping if slow) 2011/02/02 12:27:55 same here...
Jakob Kummerow 2011/02/03 14:36:52 Done.
12 #include "policy/configuration_policy_type.h" 12 #include "policy/configuration_policy_type.h"
13 13
14 class Value; 14 class Value;
15 15
16 namespace policy { 16 namespace policy {
17 17
18 // Constants for the "Proxy Server Mode" defined in the policies. 18 // Constants for the "Proxy Server Mode" defined in the policies.
19 // Note that these diverge from internal presentation defined in 19 // Note that these diverge from internal presentation defined in
20 // ProxyPrefs::ProxyMode for legacy reasons. The following four 20 // ProxyPrefs::ProxyMode for legacy reasons. The following four
21 // PolicyProxyModeType types were not very precise and had overlapping use 21 // PolicyProxyModeType types were not very precise and had overlapping use
(...skipping 25 matching lines...) Expand all
47 protected: 47 protected:
48 ConfigurationPolicyStoreInterface() {} 48 ConfigurationPolicyStoreInterface() {}
49 49
50 private: 50 private:
51 DISALLOW_COPY_AND_ASSIGN(ConfigurationPolicyStoreInterface); 51 DISALLOW_COPY_AND_ASSIGN(ConfigurationPolicyStoreInterface);
52 }; 52 };
53 53
54 } // namespace policy 54 } // namespace policy
55 55
56 #endif // CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_STORE_INTERFACE_H_ 56 #endif // CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_STORE_INTERFACE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698