// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/ui/media_router/cast_dialog_model.h" namespace media_router { CastDialogModel::CastDialogModel() = default; CastDialogModel::CastDialogModel(const CastDialogModel& other) = default; CastDialogModel::~CastDialogModel() = default; std::optional<size_t> CastDialogModel::GetFirstActiveSinkIndex() const { … } } // namespace media_router