| OLD | NEW |
| 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 "content/app/android/child_process_service.h" | 5 #include "content/app/android/child_process_service.h" |
| 6 | 6 |
| 7 #include <android/native_window_jni.h> | 7 #include <android/native_window_jni.h> |
| 8 #include <cpu-features.h> | 8 #include <cpu-features.h> |
| 9 | 9 |
| 10 #include "base/android/jni_array.h" | 10 #include "base/android/jni_array.h" |
| 11 #include "base/android/library_loader/library_loader_hooks.h" | 11 #include "base/android/library_loader/library_loader_hooks.h" |
| 12 #include "base/android/memory_pressure_listener_android.h" | 12 #include "base/android/memory_pressure_listener_android.h" |
| 13 #include "base/logging.h" | 13 #include "base/logging.h" |
| 14 #include "base/posix/global_descriptors.h" | 14 #include "base/posix/global_descriptors.h" |
| 15 #include "content/child/child_thread_impl.h" | 15 #include "content/child/child_thread_impl.h" |
| 16 #include "content/common/android/surface_texture_manager.h" | 16 #include "content/common/android/surface_texture_manager.h" |
| 17 #include "content/common/android/surface_texture_peer.h" | 17 #include "content/common/android/surface_texture_peer.h" |
| 18 #include "content/common/gpu/gpu_surface_lookup.h" | 18 #include "content/common/gpu/gpu_surface_lookup.h" |
| 19 #include "content/public/app/android_library_loader_hooks.h" | |
| 20 #include "content/public/common/content_descriptors.h" | 19 #include "content/public/common/content_descriptors.h" |
| 21 #include "ipc/ipc_descriptors.h" | 20 #include "ipc/ipc_descriptors.h" |
| 22 #include "jni/ChildProcessService_jni.h" | 21 #include "jni/ChildProcessService_jni.h" |
| 23 #include "ui/gl/android/scoped_java_surface.h" | 22 #include "ui/gl/android/scoped_java_surface.h" |
| 24 | 23 |
| 25 using base::android::AttachCurrentThread; | 24 using base::android::AttachCurrentThread; |
| 26 using base::android::CheckException; | 25 using base::android::CheckException; |
| 27 using base::android::JavaIntArrayToIntVector; | 26 using base::android::JavaIntArrayToIntVector; |
| 28 | 27 |
| 29 namespace content { | 28 namespace content { |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 | 183 |
| 185 bool RegisterChildProcessService(JNIEnv* env) { | 184 bool RegisterChildProcessService(JNIEnv* env) { |
| 186 return RegisterNativesImpl(env); | 185 return RegisterNativesImpl(env); |
| 187 } | 186 } |
| 188 | 187 |
| 189 void ShutdownMainThread(JNIEnv* env, jobject obj) { | 188 void ShutdownMainThread(JNIEnv* env, jobject obj) { |
| 190 ChildThreadImpl::ShutdownThread(); | 189 ChildThreadImpl::ShutdownThread(); |
| 191 } | 190 } |
| 192 | 191 |
| 193 } // namespace content | 192 } // namespace content |
| OLD | NEW |