blob: 0b68da1f4504b1ba00430ec5463f6a4e97eae218 [file] [log] [blame]
// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/media_router/browser/media_routes_observer.h"
#include "base/check.h"
#include "components/media_router/browser/media_router.h"
#include "content/public/browser/browser_thread.h"
namespace media_router {
MediaRoutesObserver::MediaRoutesObserver(MediaRouter* router)
: router_(router) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
DCHECK(router_);
router_->RegisterMediaRoutesObserver(this);
}
MediaRoutesObserver::~MediaRoutesObserver() {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
CHECK(IsInObserverList());
router_->UnregisterMediaRoutesObserver(this);
}
} // namespace media_router