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

Unified Diff: components/zip/zip_internal.cc

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/zip/zip_internal.cc
diff --git a/components/zip/zip_internal.cc b/components/zip/zip_internal.cc
index 0efbcfe1d1abe5ecfadfde6a609cf7bcc32bb08f..56bca5e923aa4f670f78c40f305e017f670f4a4a 100644
--- a/components/zip/zip_internal.cc
+++ b/components/zip/zip_internal.cc
@@ -54,7 +54,7 @@ void* ZipOpenFunc(void *opaque, const char* filename, int mode) {
creation_disposition = CREATE_ALWAYS;
}
- string16 filename16 = UTF8ToUTF16(filename);
+ base::string16 filename16 = UTF8ToUTF16(filename);
if ((filename != NULL) && (desired_access != 0)) {
file = CreateFile(filename16.c_str(), desired_access, share_mode,
NULL, creation_disposition, flags_and_attributes, NULL);
« components/autofill/browser/address.h ('K') | « components/webdata/encryptor/encryptor_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698