| Index: base/win/registry.cc
 | 
| ===================================================================
 | 
| --- base/win/registry.cc	(revision 62848)
 | 
| +++ base/win/registry.cc	(working copy)
 | 
| @@ -2,7 +2,7 @@
 | 
|  // Use of this source code is governed by a BSD-style license that can be
 | 
|  // found in the LICENSE file.
 | 
|  
 | 
| -#include "base/registry.h"
 | 
| +#include "base/win/registry.h"
 | 
|  
 | 
|  #include <shlwapi.h>
 | 
|  
 | 
| @@ -10,6 +10,9 @@
 | 
|  
 | 
|  #pragma comment(lib, "shlwapi.lib")  // for SHDeleteKey
 | 
|  
 | 
| +namespace base {
 | 
| +namespace win {
 | 
| +
 | 
|  RegistryValueIterator::RegistryValueIterator(HKEY root_key,
 | 
|                                               const wchar_t* folder_key) {
 | 
|    LONG result = RegOpenKeyEx(root_key, folder_key, 0, KEY_READ, &key_);
 | 
| @@ -379,3 +382,6 @@
 | 
|    }
 | 
|    return false;
 | 
|  }
 | 
| +
 | 
| +}  // namespace win
 | 
| +}  // namespace base
 | 
| 
 |