| Index: remoting/client/frame_consumer_proxy.h
|
| diff --git a/remoting/client/frame_consumer_proxy.h b/remoting/client/frame_consumer_proxy.h
|
| index 21e8fe488c45e9e9d958caa2719daa855cdb6c97..d655e6e900afd0f9d12d00098f78747f534e8f28 100644
|
| --- a/remoting/client/frame_consumer_proxy.h
|
| +++ b/remoting/client/frame_consumer_proxy.h
|
| @@ -36,6 +36,7 @@ class FrameConsumerProxy
|
| virtual void ReturnBuffer(webrtc::DesktopFrame* buffer) OVERRIDE;
|
| virtual void SetSourceSize(const webrtc::DesktopSize& source_size,
|
| const webrtc::DesktopVector& dpi) OVERRIDE;
|
| + virtual PixelFormat GetPixelFormat() OVERRIDE;
|
|
|
| // Attaches to |frame_consumer_|.
|
| // This must only be called from |frame_consumer_message_loop_|.
|
| @@ -48,6 +49,8 @@ class FrameConsumerProxy
|
| base::WeakPtr<FrameConsumer> frame_consumer_;
|
| scoped_refptr<base::SingleThreadTaskRunner> task_runner_;
|
|
|
| + PixelFormat pixel_format_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(FrameConsumerProxy);
|
| };
|
|
|
|
|