Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / sandbox / win / src / process_thread_dispatcher.h
index fba2754..c0b12d1 100644 (file)
@@ -23,17 +23,19 @@ class ThreadProcessDispatcher : public Dispatcher {
 
  private:
   // Processes IPC requests coming from calls to NtOpenThread() in the target.
-  bool NtOpenThread(IPCInfo* ipc, DWORD desired_access, DWORD thread_id);
+  bool NtOpenThread(IPCInfo* ipc, uint32 desired_access, uint32 thread_id);
 
   // Processes IPC requests coming from calls to NtOpenProcess() in the target.
-  bool NtOpenProcess(IPCInfo* ipc, DWORD desired_access, DWORD process_id);
+  bool NtOpenProcess(IPCInfo* ipc, uint32 desired_access, uint32 process_id);
 
   // Processes IPC requests from calls to NtOpenProcessToken() in the target.
-  bool NtOpenProcessToken(IPCInfo* ipc, HANDLE process, DWORD desired_access);
+  bool NtOpenProcessToken(IPCInfo* ipc, HANDLE process, uint32 desired_access);
 
   // Processes IPC requests from calls to NtOpenProcessTokenEx() in the target.
-  bool NtOpenProcessTokenEx(IPCInfo* ipc, HANDLE process, DWORD desired_access,
-                            DWORD attributes);
+  bool NtOpenProcessTokenEx(IPCInfo* ipc,
+                            HANDLE process,
+                            uint32 desired_access,
+                            uint32 attributes);
 
   // Processes IPC requests coming from calls to CreateProcessW() in the target.
   bool CreateProcessW(IPCInfo* ipc,