ozone: evdev: Sync caps lock LED state to evdev
[chromium-blink-merge.git] / chromecast / media / cma / backend / video_plane_fake.cc
blob73fa39ef5b60ce2af428b4ad6a444d3af2ae8b04
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 #include "chromecast/media/cma/backend/video_plane_fake.h"
7 #include "base/logging.h"
8 #include "ui/gfx/geometry/quad_f.h"
9 #include "ui/gfx/geometry/size.h"
11 namespace chromecast {
12 namespace media {
14 VideoPlaneFake::VideoPlaneFake() {
17 VideoPlaneFake::~VideoPlaneFake() {
20 gfx::Size VideoPlaneFake::GetScreenResolution() {
21 return gfx::Size(1920, 1080);
24 void VideoPlaneFake::SetGeometry(const gfx::QuadF& quad,
25 CoordinateType coordinate_type) {
26 // Nothing to be done.
29 void VideoPlaneFake::OnScreenResolutionChanged(const gfx::Size& screen_res) {
32 } // namespace media
33 } // namespace chromecast