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

Side by Side Diff: chrome/plugin/command_buffer_stub.h

Issue 500132: linux: implement gpu plugin (Closed)
Patch Set: . Created 10 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
« no previous file with comments | « chrome/chrome_renderer.gypi ('k') | chrome/plugin/command_buffer_stub.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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 CHROME_PLUGIN_COMMAND_BUFFER_STUB_H_ 5 #ifndef CHROME_PLUGIN_COMMAND_BUFFER_STUB_H_
6 #define CHROME_PLUGIN_COMMAND_BUFFER_STUB_H_ 6 #define CHROME_PLUGIN_COMMAND_BUFFER_STUB_H_
7 7
8 #if defined(ENABLE_GPU) 8 #if defined(ENABLE_GPU)
9 9
10 #include "app/gfx/native_widget_types.h" 10 #include "app/gfx/native_widget_types.h"
11 #include "base/ref_counted.h" 11 #include "base/ref_counted.h"
12 #include "gpu/command_buffer/service/command_buffer_service.h" 12 #include "gpu/command_buffer/service/command_buffer_service.h"
13 #include "gpu/command_buffer/service/gpu_processor.h" 13 #include "gpu/command_buffer/service/gpu_processor.h"
14 #include "ipc/ipc_channel.h" 14 #include "ipc/ipc_channel.h"
15 #include "ipc/ipc_message.h" 15 #include "ipc/ipc_message.h"
16 16
17 class PluginChannel; 17 class PluginChannel;
18 18
19 class CommandBufferService; 19 class CommandBufferService;
20 20
21 class CommandBufferStub : public IPC::Channel::Listener, 21 class CommandBufferStub : public IPC::Channel::Listener,
22 public IPC::Message::Sender { 22 public IPC::Message::Sender {
23 public: 23 public:
24 CommandBufferStub(PluginChannel* channel, gfx::NativeView view); 24 CommandBufferStub(PluginChannel* channel, gfx::PluginWindowHandle window);
25 25
26 virtual ~CommandBufferStub(); 26 virtual ~CommandBufferStub();
27 27
28 // IPC::Channel::Listener implementation: 28 // IPC::Channel::Listener implementation:
29 virtual void OnMessageReceived(const IPC::Message& message); 29 virtual void OnMessageReceived(const IPC::Message& message);
30 virtual void OnChannelError(); 30 virtual void OnChannelError();
31 31
32 // IPC::Message::Sender implementation: 32 // IPC::Message::Sender implementation:
33 virtual bool Send(IPC::Message* msg); 33 virtual bool Send(IPC::Message* msg);
34 34
35 int route_id() const { return route_id_; } 35 int route_id() const { return route_id_; }
36 36
37 private: 37 private:
38 // Message handlers: 38 // Message handlers:
39 void OnInitialize(int32 size, base::SharedMemoryHandle* ring_buffer); 39 void OnInitialize(int32 size, base::SharedMemoryHandle* ring_buffer);
40 void OnSyncOffsets(int32 put_offset, int32* get_offset); 40 void OnSyncOffsets(int32 put_offset, int32* get_offset);
41 void OnGetGetOffset(int32* get_offset); 41 void OnGetGetOffset(int32* get_offset);
42 void OnGetPutOffset(int32* put_offset); 42 void OnGetPutOffset(int32* put_offset);
43 void OnCreateTransferBuffer(int32 size, int32* id); 43 void OnCreateTransferBuffer(int32 size, int32* id);
44 void OnDestroyTransferBuffer(int32 id); 44 void OnDestroyTransferBuffer(int32 id);
45 void OnGetTransferBuffer(int32 id, 45 void OnGetTransferBuffer(int32 id,
46 base::SharedMemoryHandle* transfer_buffer, 46 base::SharedMemoryHandle* transfer_buffer,
47 size_t* size); 47 size_t* size);
48 void OnGetToken(int32* token); 48 void OnGetToken(int32* token);
49 void OnResetParseError(int32* parse_error); 49 void OnResetParseError(int32* parse_error);
50 void OnGetErrorStatus(bool* error_status); 50 void OnGetErrorStatus(bool* error_status);
51 51
52 scoped_refptr<PluginChannel> channel_; 52 scoped_refptr<PluginChannel> channel_;
53 gfx::NativeView view_; 53 gfx::PluginWindowHandle window_;
54 int route_id_; 54 int route_id_;
55 scoped_ptr<gpu::CommandBufferService> command_buffer_; 55 scoped_ptr<gpu::CommandBufferService> command_buffer_;
56 scoped_refptr<gpu::GPUProcessor> processor_; 56 scoped_refptr<gpu::GPUProcessor> processor_;
57 }; 57 };
58 58
59 #endif // ENABLE_GPU 59 #endif // ENABLE_GPU
60 60
61 #endif // CHROME_PLUGIN_COMMAND_BUFFER_STUB_H_ 61 #endif // CHROME_PLUGIN_COMMAND_BUFFER_STUB_H_
OLDNEW
« no previous file with comments | « chrome/chrome_renderer.gypi ('k') | chrome/plugin/command_buffer_stub.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698