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

Side by Side Diff: ui/android/window_android.cc

Issue 14169011: [Android] Rename NativeWindow to WindowAndroid. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Finish Renaming Created 7 years, 8 months 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "window_android.h" 5 #include "ui/android/window_android.h"
6 6
7 #include "base/android/jni_android.h" 7 #include "base/android/jni_android.h"
8 #include "base/android/jni_helper.h" 8 #include "base/android/jni_helper.h"
9 #include "base/android/scoped_java_ref.h" 9 #include "base/android/scoped_java_ref.h"
10 #include "jni/NativeWindow_jni.h" 10 #include "jni/WindowAndroid_jni.h"
11 11
12 namespace ui { 12 namespace ui {
13 13
14 using base::android::AttachCurrentThread; 14 using base::android::AttachCurrentThread;
15 using base::android::ScopedJavaLocalRef; 15 using base::android::ScopedJavaLocalRef;
16 16
17 WindowAndroid::WindowAndroid(JNIEnv* env, jobject obj) 17 WindowAndroid::WindowAndroid(JNIEnv* env, jobject obj)
18 : weak_java_window_(env, obj) { 18 : weak_java_window_(env, obj) {
19 } 19 }
20 20
21 void WindowAndroid::Destroy(JNIEnv* env, jobject obj) { 21 void WindowAndroid::Destroy(JNIEnv* env, jobject obj) {
22 delete this; 22 delete this;
23 } 23 }
24 24
25 ScopedJavaLocalRef<jobject> WindowAndroid::GetJavaObject() { 25 ScopedJavaLocalRef<jobject> WindowAndroid::GetJavaObject() {
26 JNIEnv* env = AttachCurrentThread(); 26 return weak_java_window_.get(AttachCurrentThread());
27 return weak_java_window_.get(env);
28 } 27 }
29 28
30 bool WindowAndroid::RegisterWindowAndroid(JNIEnv* env) { 29 bool WindowAndroid::RegisterWindowAndroid(JNIEnv* env) {
31 return RegisterNativesImpl(env); 30 return RegisterNativesImpl(env);
32 } 31 }
33 32
34 WindowAndroid::~WindowAndroid() { 33 WindowAndroid::~WindowAndroid() {
35 } 34 }
36 35
37 // ---------------------------------------------------------------------------- 36 // ----------------------------------------------------------------------------
38 // Native JNI methods 37 // Native JNI methods
39 // ---------------------------------------------------------------------------- 38 // ----------------------------------------------------------------------------
40 39
41 jint Init(JNIEnv* env, jobject obj) { 40 jint Init(JNIEnv* env, jobject obj) {
42 WindowAndroid* window = new WindowAndroid(env, obj); 41 WindowAndroid* window = new WindowAndroid(env, obj);
43 return reinterpret_cast<jint>(window); 42 return reinterpret_cast<jint>(window);
44 } 43 }
45 44
46 } // namespace ui 45 } // namespace ui
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698