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

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

Issue 119713003: Add base:: to string16s in sandbox/. (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 | « no previous file | sandbox/win/src/app_container.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sandbox/win/src/app_container.h
diff --git a/sandbox/win/src/app_container.h b/sandbox/win/src/app_container.h
index 34b43e95f5712270b90e26e9630655c23a015978..8125d706fb4addab8d9b43a5db37d723dd9cfaae 100644
--- a/sandbox/win/src/app_container.h
+++ b/sandbox/win/src/app_container.h
@@ -29,8 +29,8 @@ class AppContainerAttributes {
~AppContainerAttributes();
// Sets the AppContainer and capabilities to be used with the new process.
- ResultCode SetAppContainer(const string16& app_container_sid,
- const std::vector<string16>& capabilities);
+ ResultCode SetAppContainer(const base::string16& app_container_sid,
+ const std::vector<base::string16>& capabilities);
// Updates the proc_thred attribute list of the provided startup_information
// with the app container related data.
@@ -53,15 +53,16 @@ class AppContainerAttributes {
// AppContainer, and |name| will be used as both the display name and moniker.
// This function fails if the OS doesn't support AppContainers, or if there is
// an AppContainer registered with the same id.
-ResultCode CreateAppContainer(const string16& sid, const string16& name);
+ResultCode CreateAppContainer(const base::string16& sid,
+ const base::string16& name);
// Deletes an AppContainer previously created with a successfull call to
// CreateAppContainer.
-ResultCode DeleteAppContainer(const string16& sid);
+ResultCode DeleteAppContainer(const base::string16& sid);
// Retrieves the name associated with the provided AppContainer sid. Returns an
// empty string if the AppContainer is not registered with the system.
-string16 LookupAppContainer(const string16& sid);
+base::string16 LookupAppContainer(const base::string16& sid);
} // namespace sandbox
« no previous file with comments | « no previous file | sandbox/win/src/app_container.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698