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

Unified Diff: chrome/browser/chromeos/login/managed/locally_managed_user_creation_controller.h

Issue 105193002: Replace string16 with base::string16. (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
Index: chrome/browser/chromeos/login/managed/locally_managed_user_creation_controller.h
diff --git a/chrome/browser/chromeos/login/managed/locally_managed_user_creation_controller.h b/chrome/browser/chromeos/login/managed/locally_managed_user_creation_controller.h
index ce509592355f0fc5850511020e6ffb4971ae0b61..c0a796bb02739d1747aad037a1460777ba5680ca 100644
--- a/chrome/browser/chromeos/login/managed/locally_managed_user_creation_controller.h
+++ b/chrome/browser/chromeos/login/managed/locally_managed_user_creation_controller.h
@@ -73,14 +73,14 @@ class LocallyManagedUserCreationController
// Set up controller for creating new supervised user with |display_name|,
// |password| and avatar indexed by |avatar_index|. StartCreation() have to
// be called to actually start creating user.
- void SetUpCreation(const string16& display_name,
+ void SetUpCreation(const base::string16& display_name,
const std::string& password,
int avatar_index);
// Configures and initiates importing existing supervised user to this device.
// Existing user is identified by |sync_id|, has |display_name|, |password|,
// |avatar_index|. The master key for cryptohome is a |master_key|.
- void StartImport(const string16& display_name,
+ void StartImport(const base::string16& display_name,
const std::string& password,
int avatar_index,
const std::string& sync_id,
@@ -103,7 +103,7 @@ class LocallyManagedUserCreationController
UserCreationContext();
~UserCreationContext();
- string16 display_name;
+ base::string16 display_name;
int avatar_index;
std::string manager_id;
std::string local_user_id; // Used to identify cryptohome.

Powered by Google App Engine
This is Rietveld 408576698