| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 CHROMECAST_MEDIA_CMA_BACKEND_VIDEO_PLANE_FAKE_H_ | 5 #ifndef CHROMECAST_MEDIA_CMA_BACKEND_VIDEO_PLANE_FAKE_H_ |
| 6 #define CHROMECAST_MEDIA_CMA_BACKEND_VIDEO_PLANE_FAKE_H_ | 6 #define CHROMECAST_MEDIA_CMA_BACKEND_VIDEO_PLANE_FAKE_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/singleton.h" | 9 #include "base/memory/singleton.h" |
| 10 #include "chromecast/media/cma/backend/video_plane.h" | 10 #include "chromecast/media/cma/backend/video_plane.h" |
| 11 | 11 |
| 12 namespace chromecast { | 12 namespace chromecast { |
| 13 namespace media { | 13 namespace media { |
| 14 | 14 |
| 15 class VideoPlaneFake : public VideoPlane { | 15 class VideoPlaneFake : public VideoPlane { |
| 16 public: | 16 public: |
| 17 static VideoPlaneFake* GetInstance(); | 17 static VideoPlaneFake* GetInstance(); |
| 18 | 18 |
| 19 // VideoPlane implementation. | 19 // VideoPlane implementation. |
| 20 gfx::Size GetVideoPlaneResolution() override; | 20 virtual gfx::Size GetScreenResolution() override; |
| 21 void SetGeometry(const gfx::QuadF& quad, | 21 virtual void SetGeometry(const gfx::QuadF& quad, |
| 22 CoordinateType coordinate_type) override; | 22 CoordinateType coordinate_type) override; |
| 23 virtual void OnScreenResolutionChanged(const gfx::Size& screen_res) override; |
| 23 | 24 |
| 24 private: | 25 private: |
| 25 friend struct DefaultSingletonTraits<VideoPlaneFake>; | |
| 26 friend class Singleton<VideoPlaneFake>; | |
| 27 | |
| 28 VideoPlaneFake(); | |
| 29 virtual ~VideoPlaneFake(); | |
| 30 | |
| 31 DISALLOW_COPY_AND_ASSIGN(VideoPlaneFake); | 26 DISALLOW_COPY_AND_ASSIGN(VideoPlaneFake); |
| 32 }; | 27 }; |
| 33 | 28 |
| 34 } // namespace media | 29 } // namespace media |
| 35 } // namespace chromecast | 30 } // namespace chromecast |
| 36 | 31 |
| 37 #endif // CHROMECAST_MEDIA_CMA_BACKEND_VIDEO_PLANE_FAKE_H_ | 32 #endif // CHROMECAST_MEDIA_CMA_BACKEND_VIDEO_PLANE_FAKE_H_ |
| OLD | NEW |