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

Unified Diff: base/android/java/src/org/chromium/base/SystemMessageHandler.java

Issue 59323004: Android: moves base/ 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
« no previous file with comments | « no previous file | base/message_loop/message_pump_android.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/android/java/src/org/chromium/base/SystemMessageHandler.java
diff --git a/base/android/java/src/org/chromium/base/SystemMessageHandler.java b/base/android/java/src/org/chromium/base/SystemMessageHandler.java
index fc25ff8457ec144ec6a596bcb4a3b1d400d34709..8baf2b0ba3fc6e0a7127f605cfc5b514ed5f4569 100644
--- a/base/android/java/src/org/chromium/base/SystemMessageHandler.java
+++ b/base/android/java/src/org/chromium/base/SystemMessageHandler.java
@@ -16,9 +16,9 @@ class SystemMessageHandler extends Handler {
private static final int DELAYED_TIMER_MESSAGE = 2;
// Native class pointer set by the constructor of the SharedClient native class.
- private int mMessagePumpDelegateNative = 0;
+ private long mMessagePumpDelegateNative = 0;
- private SystemMessageHandler(int messagePumpDelegateNative) {
+ private SystemMessageHandler(long messagePumpDelegateNative) {
mMessagePumpDelegateNative = messagePumpDelegateNative;
}
@@ -47,9 +47,9 @@ class SystemMessageHandler extends Handler {
}
@CalledByNative
- private static SystemMessageHandler create(int messagePumpDelegateNative) {
+ private static SystemMessageHandler create(long messagePumpDelegateNative) {
return new SystemMessageHandler(messagePumpDelegateNative);
}
- private native void nativeDoRunLoopOnce(int messagePumpDelegateNative);
+ private native void nativeDoRunLoopOnce(long messagePumpDelegateNative);
}
« no previous file with comments | « no previous file | base/message_loop/message_pump_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698