Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(586)

Unified Diff: base/win/registry.h

Issue 275103012: Add WOW64 support and DeleteEmptyKey to base::win::registry. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: separate the wow64 code from the bug fixes Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | base/win/registry.cc » ('j') | base/win/registry.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/win/registry.h
diff --git a/base/win/registry.h b/base/win/registry.h
index 2ef759bf4cba5724b0caa2c1ab77f60f76f1aebc..bc8d64d5241bcbb8458b8841ab162e26e93d388d 100644
--- a/base/win/registry.h
+++ b/base/win/registry.h
@@ -132,8 +132,12 @@ class BASE_EXPORT RegKey {
HKEY Handle() const { return key_; }
private:
+ static LONG RegDeleteKeyExWrapper(HKEY hKey, const wchar_t* lpSubKey,
grt (UTC plus 2) 2014/05/16 15:44:43 add doc string
Will Harris 2014/05/16 22:55:45 Done.
+ REGSAM samDesired, DWORD Reserved);
+ LONG RegDelRecurse(HKEY root_key, std::wstring name, REGSAM access);
grt (UTC plus 2) 2014/05/16 15:44:43 add doc string
Will Harris 2014/05/16 22:55:45 Done.
HKEY key_; // The registry key being iterated.
HANDLE watch_event_;
+ REGSAM wow64access_;
DISALLOW_COPY_AND_ASSIGN(RegKey);
};
« no previous file with comments | « no previous file | base/win/registry.cc » ('j') | base/win/registry.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698