Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "content/browser/android/jni_helper.h" | |
| 6 | |
| 7 #include "base/android/jni_android.h" | |
| 8 #include "base/logging.h" | |
| 9 | |
| 10 using base::android::AttachCurrentThread; | |
| 11 | |
| 12 JavaObjectWeakGlobalRef::JavaObjectWeakGlobalRef(JNIEnv* env, jobject obj) | |
| 13 : obj_(env->NewWeakGlobalRef(obj)) { | |
| 14 DCHECK(obj_); | |
| 15 } | |
| 16 | |
| 17 JavaObjectWeakGlobalRef::~JavaObjectWeakGlobalRef() { | |
| 18 DCHECK(obj_); | |
| 19 AttachCurrentThread()->DeleteWeakGlobalRef(obj_); | |
| 20 } | |
| 21 | |
| 22 base::android::ScopedJavaLocalRef<jobject> | |
| 23 JavaObjectWeakGlobalRef::get(JNIEnv* env) const { | |
| 24 return GetRealObject(env, obj_); | |
| 25 } | |
| 26 | |
| 27 base::android::ScopedJavaLocalRef<jobject> GetRealObject( | |
| 28 JNIEnv* env, jobject obj) { | |
| 29 jobject real = env->NewLocalRef(obj); | |
| 30 if (!real) | |
| 31 DLOG(ERROR) << "The real object has been deleted!"; | |
|
John Grabowski
2012/04/19 18:55:27
CHECK()?
Ted C
2012/04/19 23:21:07
As this is a weak reference, the underlying object
| |
| 32 return base::android::ScopedJavaLocalRef<jobject>(env, real); | |
| 33 } | |
| OLD | NEW |