Commit 33a02224 authored by Daniel Nicoara's avatar Daniel Nicoara Committed by Commit Bot

[Chromecast] Remove deprecated VideoPlaneController::SetGeometryGfx

All callers have been updated to use VideoPlaneController::SetGeometry,
so remove the deprecated call.

Bug: None
Test: Compiled
Change-Id: I6c0a57c10ea8dd8282205359864854a9e36a0e73
Reviewed-on: https://chromium-review.googlesource.com/1067684Reviewed-by: default avatarLuke Halliwell <halliwell@chromium.org>
Commit-Queue: Daniel Nicoara <dnicoara@chromium.org>
Cr-Commit-Position: refs/heads/master@{#561927}
parent 50dab082
...@@ -179,11 +179,6 @@ VideoPlaneController::VideoPlaneController( ...@@ -179,11 +179,6 @@ VideoPlaneController::VideoPlaneController(
VideoPlaneController::~VideoPlaneController() {} VideoPlaneController::~VideoPlaneController() {}
void VideoPlaneController::SetGeometryGfx(const gfx::RectF& display_rect,
gfx::OverlayTransform transform) {
SetGeometry(display_rect, transform);
}
void VideoPlaneController::SetGeometry(const gfx::RectF& gfx_display_rect, void VideoPlaneController::SetGeometry(const gfx::RectF& gfx_display_rect,
gfx::OverlayTransform gfx_transform) { gfx::OverlayTransform gfx_transform) {
const RectF display_rect(gfx_display_rect.x(), gfx_display_rect.y(), const RectF display_rect(gfx_display_rect.x(), gfx_display_rect.y(),
......
...@@ -42,10 +42,6 @@ class VideoPlaneController { ...@@ -42,10 +42,6 @@ class VideoPlaneController {
// Sets the video plane geometry in *graphics plane coordinates*. If there is // Sets the video plane geometry in *graphics plane coordinates*. If there is
// no change to video plane parameters from the last call to this method, it // no change to video plane parameters from the last call to this method, it
// is a no-op. // is a no-op.
// TODO(dnicoara): DEPRECATED, Remove once all users are updated.
void SetGeometryGfx(const gfx::RectF& display_rect,
gfx::OverlayTransform transform);
void SetGeometry(const gfx::RectF& display_rect, void SetGeometry(const gfx::RectF& display_rect,
gfx::OverlayTransform transform); gfx::OverlayTransform transform);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment