blob: 2a8bef8534d113e4727f4ec630d08db91c5f6f5b [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 "chromecast/browser/cast_content_window.h"
namespace chromecast {
namespace shell {
CastContentWindow::CastContentWindow() = default;
CastContentWindow::~CastContentWindow() = default;
CastContentWindow::CreateParams::CreateParams() = default;
void CastContentWindow::AddObserver(Observer* observer) {
observer_list_.AddObserver(observer);
}
void CastContentWindow::RemoveObserver(Observer* observer) {
observer_list_.RemoveObserver(observer);
}
} // namespace shell
} // namespace chromecast