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

Unified Diff: content/browser/renderer_host/gpu_message_filter.h

Issue 1129943006: Implement StreamTexture::BindTexImage. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/renderer_host/gpu_message_filter.h
diff --git a/content/browser/renderer_host/gpu_message_filter.h b/content/browser/renderer_host/gpu_message_filter.h
index 57dfe9b45c3c7159b67a3a834b091d0cbd0563fa..fcc6aaea3e1e4692b7e4b27288196825ea164e98 100644
--- a/content/browser/renderer_host/gpu_message_filter.h
+++ b/content/browser/renderer_host/gpu_message_filter.h
@@ -62,6 +62,10 @@ class GpuMessageFilter : public BrowserMessageFilter {
const GPUCreateCommandBufferConfig& init_params,
int32 route_id,
IPC::Message* reply);
+ void OnCreateStreamTexture(int32 image_id,
+ int32 route_id,
+ int32 stream_id,
+ IPC::Message* reply_ptr);
// Helper callbacks for the message handlers.
void EstablishChannelCallback(scoped_ptr<IPC::Message> reply,
const IPC::ChannelHandle& channel,
@@ -69,6 +73,8 @@ class GpuMessageFilter : public BrowserMessageFilter {
void CreateCommandBufferCallback(scoped_ptr<IPC::Message> reply,
CreateCommandBufferResult result);
+ void CreateStreamTextureCallback(scoped_ptr<IPC::Message> reply, bool result);
+
void BeginAllFrameSubscriptions();
void EndAllFrameSubscriptions();
void BeginFrameSubscriptionInternal(

Powered by Google App Engine
This is Rietveld 408576698