| OLD | NEW |
| (Empty) |
| 1 // Copyright 2015 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 #ifndef SKY_SHELL_SKY_VIEW_H_ | |
| 6 #define SKY_SHELL_SKY_VIEW_H_ | |
| 7 | |
| 8 #include "base/android/jni_weak_ref.h" | |
| 9 #include "base/android/scoped_java_ref.h" | |
| 10 #include "base/macros.h" | |
| 11 #include "base/memory/weak_ptr.h" | |
| 12 #include "base/single_thread_task_runner.h" | |
| 13 #include "sky/shell/gpu_delegate.h" | |
| 14 #include "sky/shell/ui_delegate.h" | |
| 15 | |
| 16 struct ANativeWindow; | |
| 17 | |
| 18 namespace sky { | |
| 19 namespace shell { | |
| 20 | |
| 21 class SkyView { | |
| 22 public: | |
| 23 struct Config { | |
| 24 base::WeakPtr<GPUDelegate> gpu_delegate; | |
| 25 scoped_refptr<base::SingleThreadTaskRunner> gpu_task_runner; | |
| 26 | |
| 27 base::WeakPtr<UIDelegate> ui_delegate; | |
| 28 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner; | |
| 29 }; | |
| 30 | |
| 31 static bool Register(JNIEnv* env); | |
| 32 | |
| 33 explicit SkyView(const Config& config); | |
| 34 ~SkyView(); | |
| 35 | |
| 36 // Called from Java | |
| 37 void Destroy(JNIEnv* env, jobject obj); | |
| 38 void SurfaceCreated(JNIEnv* env, jobject obj, jobject jsurface); | |
| 39 void SurfaceDestroyed(JNIEnv* env, jobject obj); | |
| 40 void SurfaceSetSize(JNIEnv* env, | |
| 41 jobject obj, | |
| 42 jint width, | |
| 43 jint height, | |
| 44 jfloat density); | |
| 45 | |
| 46 private: | |
| 47 void ReleaseWindow(); | |
| 48 | |
| 49 Config config_; | |
| 50 ANativeWindow* window_; | |
| 51 | |
| 52 DISALLOW_COPY_AND_ASSIGN(SkyView); | |
| 53 }; | |
| 54 | |
| 55 } // namespace shell | |
| 56 } // namespace sky | |
| 57 | |
| 58 #endif // SKY_SHELL_SKY_VIEW_H_ | |
| OLD | NEW |