diff options
Diffstat (limited to 'base')
-rw-r--r-- | base/registry.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/base/registry.h b/base/registry.h index 22ec0be..7584de019 100644 --- a/base/registry.h +++ b/base/registry.h @@ -7,14 +7,10 @@ #pragma once #include <windows.h> - #include <string> #include "base/basictypes.h" -// TODO(tfarina): Get rid of all the default arguments used in this file. -// They are not allowed by our style guide. - // 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. @@ -56,8 +52,7 @@ class RegKey { bool ValueExists(const wchar_t* name); - bool ReadValue(const wchar_t* name, void* data, DWORD* dsize, - DWORD* dtype = NULL); + bool ReadValue(const wchar_t* name, void* data, DWORD* dsize, DWORD* dtype); bool ReadValue(const wchar_t* name, std::wstring* value); bool ReadValueDW(const wchar_t* name, DWORD* value); |