blob: 45cb6248b04b4febbb5eb56e50d98ec5ba296c65 [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/extensions/cast_display_info_provider.h"
#include "base/logging.h"
namespace extensions {
CastDisplayInfoProvider::CastDisplayInfoProvider() = default;
void CastDisplayInfoProvider::UpdateDisplayUnitInfoForPlatform(
const display::Display& display,
extensions::api::system_display::DisplayUnitInfo* unit) {
NOTIMPLEMENTED_LOG_ONCE();
}
// static
DisplayInfoProvider* DisplayInfoProvider::Create() {
return new CastDisplayInfoProvider();
}
} // namespace extensions