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

Unified Diff: chrome/browser/ui/android/chrome_http_auth_handler.cc

Issue 67573003: Android: moves chrome/ to use long for JNI (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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/ui/android/chrome_http_auth_handler.cc
diff --git a/chrome/browser/ui/android/chrome_http_auth_handler.cc b/chrome/browser/ui/android/chrome_http_auth_handler.cc
index 597d8bf42fc488f0c31a4cb245f2ee902083d63c..300a6ea1683a253582ba6799128f9ea16e31a125 100644
--- a/chrome/browser/ui/android/chrome_http_auth_handler.cc
+++ b/chrome/browser/ui/android/chrome_http_auth_handler.cc
@@ -32,7 +32,7 @@ void ChromeHttpAuthHandler::Init() {
DCHECK(java_chrome_http_auth_handler_.is_null());
JNIEnv* env = AttachCurrentThread();
java_chrome_http_auth_handler_.Reset(
- Java_ChromeHttpAuthHandler_create(env, reinterpret_cast<jint>(this)));
+ Java_ChromeHttpAuthHandler_create(env, reinterpret_cast<intptr_t>(this)));
}
void ChromeHttpAuthHandler::SetObserver(LoginHandler* observer) {

Powered by Google App Engine
This is Rietveld 408576698