ozone: evdev: Sync caps lock LED state to evdev
[chromium-blink-merge.git] / chromecast / media / cma / backend / video_plane_fake.h
blob5fe04e6accbb33fef8a51c0807c815e0e4833a40
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
3 // found in the LICENSE file.
5 #ifndef CHROMECAST_MEDIA_CMA_BACKEND_VIDEO_PLANE_FAKE_H_
6 #define CHROMECAST_MEDIA_CMA_BACKEND_VIDEO_PLANE_FAKE_H_
8 #include "base/macros.h"
9 #include "chromecast/media/cma/backend/video_plane.h"
11 namespace chromecast {
12 namespace media {
14 class VideoPlaneFake : public VideoPlane {
15 public:
16 VideoPlaneFake();
17 ~VideoPlaneFake() override;
19 // VideoPlane implementation.
20 gfx::Size GetScreenResolution() override;
21 void SetGeometry(const gfx::QuadF& quad,
22 CoordinateType coordinate_type) override;
23 void OnScreenResolutionChanged(const gfx::Size& screen_res) override;
25 DISALLOW_COPY_AND_ASSIGN(VideoPlaneFake);
28 } // namespace media
29 } // namespace chromecast
31 #endif // CHROMECAST_MEDIA_CMA_BACKEND_VIDEO_PLANE_FAKE_H_