| OLD | NEW | 
|---|
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 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 COMPONENTS_POLICY_CORE_COMMON_REGISTRY_DICT_WIN_H_ | 5 #ifndef COMPONENTS_POLICY_CORE_COMMON_REGISTRY_DICT_WIN_H_ | 
| 6 #define COMPONENTS_POLICY_CORE_COMMON_REGISTRY_DICT_WIN_H_ | 6 #define COMPONENTS_POLICY_CORE_COMMON_REGISTRY_DICT_WIN_H_ | 
| 7 | 7 | 
| 8 #include <windows.h> | 8 #include <windows.h> | 
| 9 | 9 | 
| 10 #include <map> | 10 #include <map> | 
| 11 #include <string> | 11 #include <string> | 
| 12 | 12 | 
| 13 #include "base/basictypes.h" | 13 #include "base/macros.h" | 
| 14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" | 
| 15 #include "base/strings/string16.h" | 15 #include "base/strings/string16.h" | 
| 16 #include "components/policy/policy_export.h" | 16 #include "components/policy/policy_export.h" | 
| 17 | 17 | 
| 18 namespace base { | 18 namespace base { | 
| 19 class Value; | 19 class Value; | 
| 20 } | 20 } | 
| 21 | 21 | 
| 22 namespace policy { | 22 namespace policy { | 
| 23 | 23 | 
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 82  private: | 82  private: | 
| 83   KeyMap keys_; | 83   KeyMap keys_; | 
| 84   ValueMap values_; | 84   ValueMap values_; | 
| 85 | 85 | 
| 86   DISALLOW_COPY_AND_ASSIGN(RegistryDict); | 86   DISALLOW_COPY_AND_ASSIGN(RegistryDict); | 
| 87 }; | 87 }; | 
| 88 | 88 | 
| 89 }  // namespace policy | 89 }  // namespace policy | 
| 90 | 90 | 
| 91 #endif  // COMPONENTS_POLICY_CORE_COMMON_REGISTRY_DICT_WIN_H_ | 91 #endif  // COMPONENTS_POLICY_CORE_COMMON_REGISTRY_DICT_WIN_H_ | 
| OLD | NEW | 
|---|