| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 REMOTING_HOST_CAPTURER_FAKE_H_ | 5 #ifndef REMOTING_HOST_CAPTURER_FAKE_H_ |
| 6 #define REMOTING_HOST_CAPTURER_FAKE_H_ | 6 #define REMOTING_HOST_CAPTURER_FAKE_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "remoting/host/capturer.h" | 9 #include "remoting/host/capturer.h" |
| 10 #include "remoting/host/capturer_helper.h" | 10 #include "remoting/host/capturer_helper.h" |
| 11 | 11 |
| 12 namespace remoting { | 12 namespace remoting { |
| 13 | 13 |
| 14 // A CapturerFake generates artificial image for testing purpose. | 14 // A CapturerFake generates artificial image for testing purpose. |
| 15 // | 15 // |
| 16 // CapturerFake is double-buffered as required by Capturer. See | 16 // CapturerFake is double-buffered as required by Capturer. See |
| 17 // remoting/host/capturer.h. | 17 // remoting/host/capturer.h. |
| 18 class CapturerFake : public Capturer { | 18 class CapturerFake : public Capturer { |
| 19 public: | 19 public: |
| 20 CapturerFake(); | 20 CapturerFake(); |
| 21 ~CapturerFake(); | 21 virtual ~CapturerFake(); |
| 22 | 22 |
| 23 // Capturer interface. | 23 // Capturer interface. |
| 24 virtual void ScreenConfigurationChanged(); | 24 virtual void ScreenConfigurationChanged(); |
| 25 virtual media::VideoFrame::Format pixel_format() const; | 25 virtual media::VideoFrame::Format pixel_format() const; |
| 26 virtual void ClearInvalidRects(); | 26 virtual void ClearInvalidRects(); |
| 27 virtual void InvalidateRects(const InvalidRects& inval_rects); | 27 virtual void InvalidateRects(const InvalidRects& inval_rects); |
| 28 virtual void InvalidateScreen(const gfx::Size& size); | 28 virtual void InvalidateScreen(const gfx::Size& size); |
| 29 virtual void InvalidateFullScreen(); | 29 virtual void InvalidateFullScreen(); |
| 30 virtual void CaptureInvalidRects(CaptureCompletedCallback* callback); | 30 virtual void CaptureInvalidRects(CaptureCompletedCallback* callback); |
| 31 virtual const gfx::Size& size_most_recent() const; | 31 virtual const gfx::Size& size_most_recent() const; |
| (...skipping 20 matching lines...) Expand all Loading... |
| 52 | 52 |
| 53 // Format of pixels returned in buffer. | 53 // Format of pixels returned in buffer. |
| 54 media::VideoFrame::Format pixel_format_; | 54 media::VideoFrame::Format pixel_format_; |
| 55 | 55 |
| 56 DISALLOW_COPY_AND_ASSIGN(CapturerFake); | 56 DISALLOW_COPY_AND_ASSIGN(CapturerFake); |
| 57 }; | 57 }; |
| 58 | 58 |
| 59 } // namespace remoting | 59 } // namespace remoting |
| 60 | 60 |
| 61 #endif // REMOTING_HOST_CAPTURER_FAKE_H_ | 61 #endif // REMOTING_HOST_CAPTURER_FAKE_H_ |
| OLD | NEW |