blob: 15d36ecb93eaefc06afc9d22880469ebe4218228 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "modules/picture_in_picture/PictureInPictureWindow.h"
namespace blink {
PictureInPictureWindow::PictureInPictureWindow(int width, int height)
: width_(width), height_(height) {}
void PictureInPictureWindow::OnClose() {
width_ = 0;
height_ = 0;
}
} // namespace blink