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

Side by Side Diff: content/browser/gpu/gpu_process_host.h

Issue 2365623003: Remove unused thread.h include in trace_event_impl.h and fix IWUU. (Closed)
Patch Set: Whitelist base DEPS for all web/tests Created 4 years, 2 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
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 #ifndef CONTENT_BROWSER_GPU_GPU_PROCESS_HOST_H_ 5 #ifndef CONTENT_BROWSER_GPU_GPU_PROCESS_HOST_H_
6 #define CONTENT_BROWSER_GPU_GPU_PROCESS_HOST_H_ 6 #define CONTENT_BROWSER_GPU_GPU_PROCESS_HOST_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <map> 10 #include <map>
(...skipping 16 matching lines...) Expand all
27 #include "gpu/config/gpu_info.h" 27 #include "gpu/config/gpu_info.h"
28 #include "gpu/ipc/common/surface_handle.h" 28 #include "gpu/ipc/common/surface_handle.h"
29 #include "ipc/ipc_sender.h" 29 #include "ipc/ipc_sender.h"
30 #include "ipc/message_filter.h" 30 #include "ipc/message_filter.h"
31 #include "ui/gfx/geometry/size.h" 31 #include "ui/gfx/geometry/size.h"
32 #include "ui/gfx/gpu_memory_buffer.h" 32 #include "ui/gfx/gpu_memory_buffer.h"
33 #include "url/gurl.h" 33 #include "url/gurl.h"
34 34
35 struct GPUCreateCommandBufferConfig; 35 struct GPUCreateCommandBufferConfig;
36 36
37 namespace base {
38 class Thread;
39 }
40
37 namespace IPC { 41 namespace IPC {
38 struct ChannelHandle; 42 struct ChannelHandle;
39 } 43 }
40 44
41 namespace gpu { 45 namespace gpu {
42 struct GpuPreferences; 46 struct GpuPreferences;
43 struct SyncToken; 47 struct SyncToken;
44 } 48 }
45 49
46 namespace shell { 50 namespace shell {
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 ClientIdToShaderCacheMap client_id_to_shader_cache_; 291 ClientIdToShaderCacheMap client_id_to_shader_cache_;
288 292
289 std::string shader_prefix_key_; 293 std::string shader_prefix_key_;
290 294
291 DISALLOW_COPY_AND_ASSIGN(GpuProcessHost); 295 DISALLOW_COPY_AND_ASSIGN(GpuProcessHost);
292 }; 296 };
293 297
294 } // namespace content 298 } // namespace content
295 299
296 #endif // CONTENT_BROWSER_GPU_GPU_PROCESS_HOST_H_ 300 #endif // CONTENT_BROWSER_GPU_GPU_PROCESS_HOST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698