Index: content/browser/android/tracing_controller_android.cc |
diff --git a/content/browser/android/tracing_controller_android.cc b/content/browser/android/tracing_controller_android.cc |
index cfa540daff5ad7c10d6db78dfca5bba55dfb8054..42d147e821d6842a3b5cda028148a3df1a0879f6 100644 |
--- a/content/browser/android/tracing_controller_android.cc |
+++ b/content/browser/android/tracing_controller_android.cc |
@@ -16,9 +16,9 @@ |
namespace content { |
-static jint Init(JNIEnv* env, jobject obj) { |
+static jlong Init(JNIEnv* env, jobject obj) { |
TracingControllerAndroid* profiler = new TracingControllerAndroid(env, obj); |
- return reinterpret_cast<jint>(profiler); |
+ return reinterpret_cast<intptr_t>(profiler); |
} |
class TracingControllerAndroid::Subscriber |