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

Unified Diff: sandbox/src/registry_interception.h

Issue 20287: In windows 7 there is a new Reg call that we need to... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 10 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 | « sandbox/src/registry_dispatcher.cc ('k') | sandbox/src/registry_interception.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sandbox/src/registry_interception.h
===================================================================
--- sandbox/src/registry_interception.h (revision 9582)
+++ sandbox/src/registry_interception.h (working copy)
@@ -25,6 +25,12 @@
NtOpenKeyFunction orig_OpenKey, PHANDLE key, ACCESS_MASK desired_access,
POBJECT_ATTRIBUTES object_attributes);
+// Interception of NtOpenKeyEx on the child process.
+// It should never be called directly
+SANDBOX_INTERCEPT NTSTATUS WINAPI TargetNtOpenKeyEx(
+ NtOpenKeyExFunction orig_OpenKeyEx, PHANDLE key, ACCESS_MASK desired_access,
+ POBJECT_ATTRIBUTES object_attributes, DWORD unknown);
+
} // extern "C"
} // namespace sandbox
« no previous file with comments | « sandbox/src/registry_dispatcher.cc ('k') | sandbox/src/registry_interception.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698