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

Side by Side Diff: content/renderer/gpu/command_buffer_proxy.h

Issue 9114020: Remove task.h and finish base::Bind() migration. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix typo Created 8 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « content/public/browser/browser_thread.h ('k') | content/renderer/gpu/command_buffer_proxy.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_RENDERER_GPU_COMMAND_BUFFER_PROXY_H_ 5 #ifndef CONTENT_RENDERER_GPU_COMMAND_BUFFER_PROXY_H_
6 #define CONTENT_RENDERER_GPU_COMMAND_BUFFER_PROXY_H_ 6 #define CONTENT_RENDERER_GPU_COMMAND_BUFFER_PROXY_H_
7 #pragma once 7 #pragma once
8 8
9 #if defined(ENABLE_GPU) 9 #if defined(ENABLE_GPU)
10 10
11 #include <map> 11 #include <map>
12 #include <queue> 12 #include <queue>
13 13
14 #include "base/callback.h" 14 #include "base/callback.h"
15 #include "base/memory/linked_ptr.h" 15 #include "base/memory/linked_ptr.h"
16 #include "base/memory/scoped_ptr.h" 16 #include "base/memory/scoped_ptr.h"
17 #include "base/memory/weak_ptr.h" 17 #include "base/memory/weak_ptr.h"
18 #include "base/task.h"
19 #include "content/renderer/gpu/gpu_video_decode_accelerator_host.h" 18 #include "content/renderer/gpu/gpu_video_decode_accelerator_host.h"
20 #include "gpu/command_buffer/common/command_buffer.h" 19 #include "gpu/command_buffer/common/command_buffer.h"
21 #include "ipc/ipc_channel.h" 20 #include "ipc/ipc_channel.h"
22 #include "ipc/ipc_message.h" 21 #include "ipc/ipc_message.h"
23 22
24 class GpuChannelHost; 23 class GpuChannelHost;
25 struct GPUCommandBufferConsoleMessage; 24 struct GPUCommandBufferConsoleMessage;
26 25
27 namespace base { 26 namespace base {
28 class SharedMemory; 27 class SharedMemory;
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 base::Closure notify_repaint_task_; 128 base::Closure notify_repaint_task_;
130 129
131 base::Closure channel_error_callback_; 130 base::Closure channel_error_callback_;
132 131
133 DISALLOW_COPY_AND_ASSIGN(CommandBufferProxy); 132 DISALLOW_COPY_AND_ASSIGN(CommandBufferProxy);
134 }; 133 };
135 134
136 #endif // ENABLE_GPU 135 #endif // ENABLE_GPU
137 136
138 #endif // CONTENT_RENDERER_GPU_COMMAND_BUFFER_PROXY_H_ 137 #endif // CONTENT_RENDERER_GPU_COMMAND_BUFFER_PROXY_H_
OLDNEW
« no previous file with comments | « content/public/browser/browser_thread.h ('k') | content/renderer/gpu/command_buffer_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698