// 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. #ifndef COMPONENTS_MEDIA_ROUTER_COMMON_ISSUE_H_ #define COMPONENTS_MEDIA_ROUTER_COMMON_ISSUE_H_ #include <string> #include "components/media_router/common/media_route.h" #include "components/media_router/common/media_sink.h" namespace media_router { // Contains the information relevant to an issue. struct IssueInfo { … }; // An issue that is associated with a globally unique ID. Created by // IssueManager when an IssueInfo is added to it. class Issue { … }; } // namespace media_router #endif // COMPONENTS_MEDIA_ROUTER_COMMON_ISSUE_H_