Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / sandbox / win / src / registry_dispatcher.h
index 39f5f54..14411fa 100644 (file)
@@ -23,13 +23,20 @@ class RegistryDispatcher : public Dispatcher {
 
  private:
   // Processes IPC requests coming from calls to NtCreateKey in the target.
-  bool NtCreateKey(IPCInfo* ipc, base::string16* name, DWORD attributes,
-                   HANDLE root, DWORD desired_access,
-                   DWORD title_index, DWORD create_options);
+  bool NtCreateKey(IPCInfo* ipc,
+                   base::string16* name,
+                   uint32 attributes,
+                   HANDLE root,
+                   uint32 desired_access,
+                   uint32 title_index,
+                   uint32 create_options);
 
   // Processes IPC requests coming from calls to NtOpenKey in the target.
-  bool NtOpenKey(IPCInfo* ipc, base::string16* name, DWORD attributes,
-                 HANDLE root, DWORD desired_access);
+  bool NtOpenKey(IPCInfo* ipc,
+                 base::string16* name,
+                 uint32 attributes,
+                 HANDLE root,
+                 uint32 desired_access);
 
   PolicyBase* policy_base_;
   DISALLOW_COPY_AND_ASSIGN(RegistryDispatcher);