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
{
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
) {
33 } // namespace chromecast