| Index: base/win/registry.h
|
| ===================================================================
|
| --- base/win/registry.h (revision 62848)
|
| +++ base/win/registry.h (working copy)
|
| @@ -2,8 +2,8 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef BASE_REGISTRY_H_
|
| -#define BASE_REGISTRY_H_
|
| +#ifndef BASE_WIN_REGISTRY_H_
|
| +#define BASE_WIN_REGISTRY_H_
|
| #pragma once
|
|
|
| #include <windows.h>
|
| @@ -11,6 +11,9 @@
|
|
|
| #include "base/basictypes.h"
|
|
|
| +namespace base {
|
| +namespace win {
|
| +
|
| // Utility class to read, write and manipulate the Windows Registry.
|
| // Registry vocabulary primer: a "key" is like a folder, in which there
|
| // are "values", which are <name, data> pairs, with an associated data type.
|
| @@ -162,4 +165,7 @@
|
| DISALLOW_COPY_AND_ASSIGN(RegistryKeyIterator);
|
| };
|
|
|
| -#endif // BASE_REGISTRY_H_
|
| +} // namespace win
|
| +} // namespace base
|
| +
|
| +#endif // BASE_WIN_REGISTRY_H_
|
|
|