OLD | NEW |
1 // Copyright (c) 2010 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 BASE_WIN_REGISTRY_H_ | 5 #ifndef BASE_WIN_REGISTRY_H_ |
6 #define BASE_WIN_REGISTRY_H_ | 6 #define BASE_WIN_REGISTRY_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <windows.h> | 9 #include <windows.h> |
10 #include <string> | 10 #include <string> |
11 | 11 |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 | 163 |
164 wchar_t name_[MAX_PATH]; | 164 wchar_t name_[MAX_PATH]; |
165 | 165 |
166 DISALLOW_COPY_AND_ASSIGN(RegistryKeyIterator); | 166 DISALLOW_COPY_AND_ASSIGN(RegistryKeyIterator); |
167 }; | 167 }; |
168 | 168 |
169 } // namespace win | 169 } // namespace win |
170 } // namespace base | 170 } // namespace base |
171 | 171 |
172 #endif // BASE_WIN_REGISTRY_H_ | 172 #endif // BASE_WIN_REGISTRY_H_ |
OLD | NEW |