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

Side by Side Diff: gpu/command_buffer/service/command_buffer_service.cc

Issue 18998002: add missing includes in gpu/command_buffer/* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add more missing includes Created 7 years, 5 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 | « no previous file | gpu/command_buffer/service/transfer_buffer_manager.cc » ('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 "gpu/command_buffer/service/command_buffer_service.h" 5 #include "gpu/command_buffer/service/command_buffer_service.h"
6 6
7 #include <limits> 7 #include <limits>
8 8
9 #include "base/logging.h"
9 #include "base/process_util.h" 10 #include "base/process_util.h"
10 #include "base/debug/trace_event.h" 11 #include "base/debug/trace_event.h"
11 #include "gpu/command_buffer/common/cmd_buffer_common.h" 12 #include "gpu/command_buffer/common/cmd_buffer_common.h"
12 #include "gpu/command_buffer/common/command_buffer_shared.h" 13 #include "gpu/command_buffer/common/command_buffer_shared.h"
13 #include "gpu/command_buffer/service/transfer_buffer_manager.h" 14 #include "gpu/command_buffer/service/transfer_buffer_manager.h"
14 15
15 using ::base::SharedMemory; 16 using ::base::SharedMemory;
16 17
17 namespace gpu { 18 namespace gpu {
18 19
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 const base::Closure& callback) { 202 const base::Closure& callback) {
202 parse_error_callback_ = callback; 203 parse_error_callback_ = callback;
203 } 204 }
204 205
205 uint32 CommandBufferService::InsertSyncPoint() { 206 uint32 CommandBufferService::InsertSyncPoint() {
206 NOTREACHED(); 207 NOTREACHED();
207 return 0; 208 return 0;
208 } 209 }
209 210
210 } // namespace gpu 211 } // namespace gpu
OLDNEW
« no previous file with comments | « no previous file | gpu/command_buffer/service/transfer_buffer_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698