| Index: remoting/client/frame_consumer.h
|
| diff --git a/remoting/client/frame_consumer.h b/remoting/client/frame_consumer.h
|
| index ce852b4fe599b1cf5a8f342067423d69d71a1a78..22701f4be0d567c16a03347345c8bf9e4905311b 100644
|
| --- a/remoting/client/frame_consumer.h
|
| +++ b/remoting/client/frame_consumer.h
|
| @@ -17,9 +17,6 @@ namespace remoting {
|
|
|
| class FrameConsumer {
|
| public:
|
| - FrameConsumer() {}
|
| - virtual ~FrameConsumer() {}
|
| -
|
| // Accepts a buffer to be painted to the screen. The buffer's dimensions and
|
| // relative position within the frame are specified by |clip_area|. Only
|
| // pixels falling within |region| and the current clipping area are painted.
|
| @@ -41,6 +38,10 @@ class FrameConsumer {
|
| // Set the dimension of the entire host screen.
|
| virtual void SetSourceSize(const SkISize& source_size) = 0;
|
|
|
| + protected:
|
| + FrameConsumer() {}
|
| + virtual ~FrameConsumer() {}
|
| +
|
| private:
|
| DISALLOW_COPY_AND_ASSIGN(FrameConsumer);
|
| };
|
|
|