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

Side by Side Diff: content/gpu/in_process_gpu_thread.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/gpu/in_process_gpu_thread.h ('k') | content/plugin/plugin_channel.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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/gpu/in_process_gpu_thread.h" 5 #include "content/gpu/in_process_gpu_thread.h"
6 6
7 #include "base/time/time.h" 7 #include "base/time/time.h"
8 #include "build/build_config.h"
8 #include "content/common/gpu/gpu_memory_buffer_factory.h" 9 #include "content/common/gpu/gpu_memory_buffer_factory.h"
9 #include "content/gpu/gpu_child_thread.h" 10 #include "content/gpu/gpu_child_thread.h"
10 #include "content/gpu/gpu_process.h" 11 #include "content/gpu/gpu_process.h"
11 #include "gpu/command_buffer/service/sync_point_manager.h" 12 #include "gpu/command_buffer/service/sync_point_manager.h"
12 13
13 #if defined(OS_ANDROID) 14 #if defined(OS_ANDROID)
14 #include "base/android/jni_android.h" 15 #include "base/android/jni_android.h"
15 #endif 16 #endif
16 17
17 namespace content { 18 namespace content {
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 SetThreadWasQuitProperly(true); 65 SetThreadWasQuitProperly(true);
65 delete gpu_process_; 66 delete gpu_process_;
66 } 67 }
67 68
68 base::Thread* CreateInProcessGpuThread( 69 base::Thread* CreateInProcessGpuThread(
69 const InProcessChildThreadParams& params) { 70 const InProcessChildThreadParams& params) {
70 return new InProcessGpuThread(params, nullptr); 71 return new InProcessGpuThread(params, nullptr);
71 } 72 }
72 73
73 } // namespace content 74 } // namespace content
OLDNEW
« no previous file with comments | « content/gpu/in_process_gpu_thread.h ('k') | content/plugin/plugin_channel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698