diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-26 00:09:42 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-26 00:09:42 +0000 |
commit | ca18f51b6b6a411178ab5ef03025a50ef85443e7 (patch) | |
tree | 8f48bd0dc0e00a747743c7de0c8281653b6da8e7 /base | |
parent | 717bde30467c3f762aa1626a2698cf4355ded3c5 (diff) | |
download | chromium_src-ca18f51b6b6a411178ab5ef03025a50ef85443e7.zip chromium_src-ca18f51b6b6a411178ab5ef03025a50ef85443e7.tar.gz chromium_src-ca18f51b6b6a411178ab5ef03025a50ef85443e7.tar.bz2 |
Remove the default argument from RegKey::Create.
BUG=44644
TEST=base_unittests --gtest_filter=RegistryTest.*
Review URL: http://codereview.chromium.org/3104032
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57430 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r-- | base/registry.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/registry.h b/base/registry.h index b9427ea..6199362 100644 --- a/base/registry.h +++ b/base/registry.h @@ -24,7 +24,7 @@ class RegKey { RegKey(HKEY rootkey, const wchar_t* subkey, REGSAM access); ~RegKey(); - bool Create(HKEY rootkey, const wchar_t* subkey, REGSAM access = KEY_READ); + bool Create(HKEY rootkey, const wchar_t* subkey, REGSAM access); bool CreateWithDisposition(HKEY rootkey, const wchar_t* subkey, DWORD* disposition, REGSAM access); |