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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/WebsiteSettingsPopup.java

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/android/java/src/org/chromium/chrome/browser/WebsiteSettingsPopup.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/WebsiteSettingsPopup.java b/chrome/android/java/src/org/chromium/chrome/browser/WebsiteSettingsPopup.java
index 6fe31bbcd2bff7cfa420c258e1bb30413280a1a4..c25a09fdeaf49ed5d7a863865391398c067d6848 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/WebsiteSettingsPopup.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/WebsiteSettingsPopup.java
@@ -43,7 +43,7 @@ class WebsiteSettingsPopup implements OnClickListener {
private String mLinkUrl;
private WebsiteSettingsPopup(Context context, ContentViewCore contentViewCore,
- final int nativeWebsiteSettingsPopup) {
+ final long nativeWebsiteSettingsPopup) {
mContext = context;
mDialog = new Dialog(mContext);
mDialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
@@ -145,10 +145,10 @@ class WebsiteSettingsPopup implements OnClickListener {
@CalledByNative
private static WebsiteSettingsPopup create(Context context, ContentViewCore contentViewCore,
- int nativeWebsiteSettingsPopup) {
+ long nativeWebsiteSettingsPopup) {
return new WebsiteSettingsPopup(context, contentViewCore, nativeWebsiteSettingsPopup);
}
- private native void nativeDestroy(int nativeWebsiteSettingsPopupAndroid);
+ private native void nativeDestroy(long nativeWebsiteSettingsPopupAndroid);
private native byte[][] nativeGetCertificateChain(ContentViewCore contentViewCore);
-}
+}

Powered by Google App Engine
This is Rietveld 408576698