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

Side by Side Diff: content/common/child_process_host_impl.h

Issue 685983005: gpu: Associate all GpuMemoryBuffers with unique IDs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: one more ozone build fix Created 6 years, 1 month 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_COMMON_CHILD_PROCESS_HOST_IMPL_H_ 5 #ifndef CONTENT_COMMON_CHILD_PROCESS_HOST_IMPL_H_
6 #define CONTENT_COMMON_CHILD_PROCESS_HOST_IMPL_H_ 6 #define CONTENT_COMMON_CHILD_PROCESS_HOST_IMPL_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 // Message handlers: 78 // Message handlers:
79 void OnShutdownRequest(); 79 void OnShutdownRequest();
80 void OnAllocateSharedMemory(uint32 buffer_size, 80 void OnAllocateSharedMemory(uint32 buffer_size,
81 base::SharedMemoryHandle* handle); 81 base::SharedMemoryHandle* handle);
82 void OnAllocateGpuMemoryBuffer(uint32 width, 82 void OnAllocateGpuMemoryBuffer(uint32 width,
83 uint32 height, 83 uint32 height,
84 gfx::GpuMemoryBuffer::Format format, 84 gfx::GpuMemoryBuffer::Format format,
85 gfx::GpuMemoryBuffer::Usage usage, 85 gfx::GpuMemoryBuffer::Usage usage,
86 IPC::Message* reply); 86 IPC::Message* reply);
87 void OnDeletedGpuMemoryBuffer(gfx::GpuMemoryBufferType type, 87 void OnDeletedGpuMemoryBuffer(gfx::GpuMemoryBufferType type,
88 const gfx::GpuMemoryBufferId& id, 88 gfx::GpuMemoryBufferId id,
89 uint32 sync_point); 89 uint32 sync_point);
90 90
91 void GpuMemoryBufferAllocated(IPC::Message* reply, 91 void GpuMemoryBufferAllocated(IPC::Message* reply,
92 const gfx::GpuMemoryBufferHandle& handle); 92 const gfx::GpuMemoryBufferHandle& handle);
93 93
94 ChildProcessHostDelegate* delegate_; 94 ChildProcessHostDelegate* delegate_;
95 base::ProcessHandle peer_handle_; 95 base::ProcessHandle peer_handle_;
96 bool opening_channel_; // True while we're waiting the channel to be opened. 96 bool opening_channel_; // True while we're waiting the channel to be opened.
97 scoped_ptr<IPC::Channel> channel_; 97 scoped_ptr<IPC::Channel> channel_;
98 std::string channel_id_; 98 std::string channel_id_;
99 99
100 // Holds all the IPC message filters. Since this object lives on the IO 100 // Holds all the IPC message filters. Since this object lives on the IO
101 // thread, we don't have a IPC::ChannelProxy and so we manage filters 101 // thread, we don't have a IPC::ChannelProxy and so we manage filters
102 // manually. 102 // manually.
103 std::vector<scoped_refptr<IPC::MessageFilter> > filters_; 103 std::vector<scoped_refptr<IPC::MessageFilter> > filters_;
104 104
105 DISALLOW_COPY_AND_ASSIGN(ChildProcessHostImpl); 105 DISALLOW_COPY_AND_ASSIGN(ChildProcessHostImpl);
106 }; 106 };
107 107
108 } // namespace content 108 } // namespace content
109 109
110 #endif // CONTENT_COMMON_CHILD_PROCESS_HOST_IMPL_H_ 110 #endif // CONTENT_COMMON_CHILD_PROCESS_HOST_IMPL_H_
OLDNEW
« no previous file with comments | « content/common/android/surface_texture_manager.h ('k') | content/common/child_process_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698