| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_MEDIA_ROUTER_MEDIA_SINK_H_ | 5 #ifndef CHROME_COMMON_MEDIA_ROUTER_MEDIA_SINK_H_ |
| 6 #define CHROME_BROWSER_MEDIA_ROUTER_MEDIA_SINK_H_ | 6 #define CHROME_COMMON_MEDIA_ROUTER_MEDIA_SINK_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/optional.h" | 10 #include "base/optional.h" |
| 11 #include "third_party/icu/source/common/unicode/uversion.h" | 11 #include "third_party/icu/source/common/unicode/uversion.h" |
| 12 | 12 |
| 13 namespace U_ICU_NAMESPACE { | 13 namespace U_ICU_NAMESPACE { |
| 14 class Collator; | 14 class Collator; |
| 15 } // namespace U_ICU_NAMESPACE | 15 } // namespace U_ICU_NAMESPACE |
| 16 | 16 |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 | 92 |
| 93 // Optional domain of the MediaSink. | 93 // Optional domain of the MediaSink. |
| 94 base::Optional<std::string> domain_; | 94 base::Optional<std::string> domain_; |
| 95 | 95 |
| 96 // The type of icon that corresponds with the MediaSink. | 96 // The type of icon that corresponds with the MediaSink. |
| 97 IconType icon_type_ = IconType::GENERIC; | 97 IconType icon_type_ = IconType::GENERIC; |
| 98 }; | 98 }; |
| 99 | 99 |
| 100 } // namespace media_router | 100 } // namespace media_router |
| 101 | 101 |
| 102 #endif // CHROME_BROWSER_MEDIA_ROUTER_MEDIA_SINK_H_ | 102 #endif // CHROME_COMMON_MEDIA_ROUTER_MEDIA_SINK_H_ |
| OLD | NEW |