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

Side by Side Diff: content/app/android/child_process_service.cc

Issue 1544273002: Switch to standard integer types in content/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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
« no previous file with comments | « content/app/android/app_jni_registrar.cc ('k') | content/app/android/library_loader_hooks.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "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/macros.h"
14 #include "base/posix/global_descriptors.h" 15 #include "base/posix/global_descriptors.h"
15 #include "content/child/child_thread_impl.h" 16 #include "content/child/child_thread_impl.h"
16 #include "content/common/android/surface_texture_manager.h" 17 #include "content/common/android/surface_texture_manager.h"
17 #include "content/common/android/surface_texture_peer.h" 18 #include "content/common/android/surface_texture_peer.h"
18 #include "content/common/gpu/gpu_surface_lookup.h" 19 #include "content/common/gpu/gpu_surface_lookup.h"
19 #include "content/public/common/content_descriptors.h" 20 #include "content/public/common/content_descriptors.h"
20 #include "ipc/ipc_descriptors.h" 21 #include "ipc/ipc_descriptors.h"
21 #include "jni/ChildProcessService_jni.h" 22 #include "jni/ChildProcessService_jni.h"
22 #include "ui/gl/android/scoped_java_surface.h" 23 #include "ui/gl/android/scoped_java_surface.h"
23 24
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 171
171 bool RegisterChildProcessService(JNIEnv* env) { 172 bool RegisterChildProcessService(JNIEnv* env) {
172 return RegisterNativesImpl(env); 173 return RegisterNativesImpl(env);
173 } 174 }
174 175
175 void ShutdownMainThread(JNIEnv* env, const JavaParamRef<jobject>& obj) { 176 void ShutdownMainThread(JNIEnv* env, const JavaParamRef<jobject>& obj) {
176 ChildThreadImpl::ShutdownThread(); 177 ChildThreadImpl::ShutdownThread();
177 } 178 }
178 179
179 } // namespace content 180 } // namespace content
OLDNEW
« no previous file with comments | « content/app/android/app_jni_registrar.cc ('k') | content/app/android/library_loader_hooks.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698