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

Unified Diff: android_webview/browser/aw_login_delegate.cc

Issue 100453010: Add base:: to string16s in android_webview/. (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 | « android_webview/browser/aw_login_delegate.h ('k') | android_webview/browser/find_helper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/browser/aw_login_delegate.cc
diff --git a/android_webview/browser/aw_login_delegate.cc b/android_webview/browser/aw_login_delegate.cc
index 2c7325339a430b13dfa5798cb5193c3eddce47a1..84ef2cb2649935d09c3e307f119aa26381e0a851 100644
--- a/android_webview/browser/aw_login_delegate.cc
+++ b/android_webview/browser/aw_login_delegate.cc
@@ -66,8 +66,8 @@ AwLoginDelegate::~AwLoginDelegate() {
DCHECK(aw_http_auth_handler_ == NULL);
}
-void AwLoginDelegate::Proceed(const string16& user,
- const string16& password) {
+void AwLoginDelegate::Proceed(const base::string16& user,
+ const base::string16& password) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
BrowserThread::PostTask(BrowserThread::IO, FROM_HERE,
base::Bind(&AwLoginDelegate::ProceedOnIOThread,
@@ -112,8 +112,8 @@ void AwLoginDelegate::CancelOnIOThread() {
DeleteAuthHandlerSoon();
}
-void AwLoginDelegate::ProceedOnIOThread(const string16& user,
- const string16& password) {
+void AwLoginDelegate::ProceedOnIOThread(const base::string16& user,
+ const base::string16& password) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
if (request_) {
request_->SetAuth(net::AuthCredentials(user, password));
« no previous file with comments | « android_webview/browser/aw_login_delegate.h ('k') | android_webview/browser/find_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698