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

Unified Diff: chrome/browser/android/intent_helper.cc

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
« no previous file with comments | « chrome/browser/android/intent_helper.h ('k') | chrome/browser/android/most_visited_sites.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/android/intent_helper.cc
diff --git a/chrome/browser/android/intent_helper.cc b/chrome/browser/android/intent_helper.cc
index 347f3fc165627a0c471c6bcfd290289e2bd0715c..1a9f36bc271965e7485e6f668462def0b02d91d3 100644
--- a/chrome/browser/android/intent_helper.cc
+++ b/chrome/browser/android/intent_helper.cc
@@ -17,11 +17,11 @@ using base::android::ConvertUTF16ToJavaString;
namespace chrome {
namespace android {
-void SendEmail(const string16& d_email,
- const string16& d_subject,
- const string16& d_body,
- const string16& d_chooser_title,
- const string16& d_file_to_attach) {
+void SendEmail(const base::string16& d_email,
+ const base::string16& d_subject,
+ const base::string16& d_body,
+ const base::string16& d_chooser_title,
+ const base::string16& d_file_to_attach) {
JNIEnv* env = AttachCurrentThread();
ScopedJavaLocalRef<jstring> j_email = ConvertUTF16ToJavaString(env, d_email);
ScopedJavaLocalRef<jstring> j_subject =
« no previous file with comments | « chrome/browser/android/intent_helper.h ('k') | chrome/browser/android/most_visited_sites.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698