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

Unified Diff: components/webdata/encryptor/encryptor.h

Issue 13973004: Convert string16 -> base::string16 in components/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 months 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: components/webdata/encryptor/encryptor.h
diff --git a/components/webdata/encryptor/encryptor.h b/components/webdata/encryptor/encryptor.h
index 94ce108afa0f1643785ba6e973ffdd451495cb4c..d76c3c79315cf828352812587df6fbcdf4ddca26 100644
--- a/components/webdata/encryptor/encryptor.h
+++ b/components/webdata/encryptor/encryptor.h
@@ -17,7 +17,7 @@ class Encryptor {
// Encrypt a string16. The output (second argument) is
// really an array of bytes, but we're passing it back
// as a std::string
- static bool EncryptString16(const string16& plaintext,
+ static bool EncryptString16(const base::string16& plaintext,
std::string* ciphertext);
// Decrypt an array of bytes obtained with EncryptString16
@@ -25,7 +25,7 @@ class Encryptor {
// is a std::string, so you need to first get your (binary)
// data into a string.
static bool DecryptString16(const std::string& ciphertext,
- string16* plaintext);
+ base::string16* plaintext);
// Encrypt a string.
static bool EncryptString(const std::string& plaintext,

Powered by Google App Engine
This is Rietveld 408576698