// Copyright 2017 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/common/providers/cast/channel/cast_channel_enum.h" #include <ostream> #include "base/notreached.h" namespace cast_channel { #define CAST_CHANNEL_TYPE_TO_STRING(enum) … // TODO(crbug.com/1291730): Replace with EnumTable. std::string ReadyStateToString(ReadyState ready_state) { … } // TODO(crbug.com/1291730): Replace with EnumTable. std::string ChannelErrorToString(ChannelError channel_error) { … } } // namespace cast_channel