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

Unified Diff: sandbox/win/src/handle_closer.h

Issue 111373008: Update some uses of char16 to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 | « remoting/host/win/security_descriptor.cc ('k') | sandbox/win/src/handle_closer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sandbox/win/src/handle_closer.h
diff --git a/sandbox/win/src/handle_closer.h b/sandbox/win/src/handle_closer.h
index 8833b847c5147780f1447c2aa32f51ad8da6b130..a5808d1b7a54a036e14d023f2d682957054d7296 100644
--- a/sandbox/win/src/handle_closer.h
+++ b/sandbox/win/src/handle_closer.h
@@ -27,7 +27,7 @@ struct HandleListEntry {
size_t record_bytes; // Rounded to sizeof(size_t) bytes.
size_t offset_to_names; // Nul terminated strings of name_count names.
size_t name_count;
- char16 handle_type[1];
+ base::char16 handle_type[1];
};
// Global parameters and a pointer to the list of entries.
@@ -47,7 +47,8 @@ class HandleCloser {
// Adds a handle that will be closed in the target process after lockdown.
// A NULL value for handle_name indicates all handles of the specified type.
// An empty string for handle_name indicates the handle is unnamed.
- ResultCode AddHandle(const char16* handle_type, const char16* handle_name);
+ ResultCode AddHandle(const base::char16* handle_type,
+ const base::char16* handle_name);
// Serializes and copies the closer table into the target process.
bool InitializeTargetHandles(TargetProcess* target);
« no previous file with comments | « remoting/host/win/security_descriptor.cc ('k') | sandbox/win/src/handle_closer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698