summaryrefslogtreecommitdiff
path: root/chromium/sandbox/win/src/registry_dispatcher.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/sandbox/win/src/registry_dispatcher.h')
-rw-r--r--chromium/sandbox/win/src/registry_dispatcher.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/chromium/sandbox/win/src/registry_dispatcher.h b/chromium/sandbox/win/src/registry_dispatcher.h
index 782a070e4e2..39f5f54246d 100644
--- a/chromium/sandbox/win/src/registry_dispatcher.h
+++ b/chromium/sandbox/win/src/registry_dispatcher.h
@@ -6,6 +6,7 @@
#define SANDBOX_SRC_REGISTRY_DISPATCHER_H_
#include "base/basictypes.h"
+#include "base/strings/string16.h"
#include "sandbox/win/src/crosscall_server.h"
#include "sandbox/win/src/sandbox_policy_base.h"
@@ -22,12 +23,12 @@ class RegistryDispatcher : public Dispatcher {
private:
// Processes IPC requests coming from calls to NtCreateKey in the target.
- bool NtCreateKey(IPCInfo* ipc, std::wstring* name, DWORD attributes,
+ bool NtCreateKey(IPCInfo* ipc, base::string16* name, DWORD attributes,
HANDLE root, DWORD desired_access,
DWORD title_index, DWORD create_options);
// Processes IPC requests coming from calls to NtOpenKey in the target.
- bool NtOpenKey(IPCInfo* ipc, std::wstring* name, DWORD attributes,
+ bool NtOpenKey(IPCInfo* ipc, base::string16* name, DWORD attributes,
HANDLE root, DWORD desired_access);
PolicyBase* policy_base_;