| 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_UI_WEBUI_MEDIA_ROUTER_QUERY_RESULT_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_MEDIA_ROUTER_QUERY_RESULT_MANAGER_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_MEDIA_ROUTER_QUERY_RESULT_MANAGER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_MEDIA_ROUTER_QUERY_RESULT_MANAGER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <set> | 10 #include <set> |
| 11 #include <unordered_set> | 11 #include <unordered_set> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "base/gtest_prod_util.h" | 14 #include "base/gtest_prod_util.h" |
| 15 #include "base/macros.h" | 15 #include "base/macros.h" |
| 16 #include "base/observer_list.h" | 16 #include "base/observer_list.h" |
| 17 #include "chrome/browser/media/router/media_routes_observer.h" | 17 #include "chrome/browser/media/router/media_routes_observer.h" |
| 18 #include "chrome/browser/media/router/media_sink.h" | |
| 19 #include "chrome/browser/media/router/media_source.h" | |
| 20 #include "chrome/browser/ui/webui/media_router/cast_modes_with_media_sources.h" | 18 #include "chrome/browser/ui/webui/media_router/cast_modes_with_media_sources.h" |
| 21 #include "chrome/browser/ui/webui/media_router/media_cast_mode.h" | 19 #include "chrome/browser/ui/webui/media_router/media_cast_mode.h" |
| 22 #include "chrome/browser/ui/webui/media_router/media_sink_with_cast_modes.h" | 20 #include "chrome/browser/ui/webui/media_router/media_sink_with_cast_modes.h" |
| 21 #include "chrome/common/media_router/media_sink.h" |
| 22 #include "chrome/common/media_router/media_source.h" |
| 23 | 23 |
| 24 namespace url { | 24 namespace url { |
| 25 class Origin; | 25 class Origin; |
| 26 } // namespace url | 26 } // namespace url |
| 27 | 27 |
| 28 namespace media_router { | 28 namespace media_router { |
| 29 | 29 |
| 30 class MediaRouter; | 30 class MediaRouter; |
| 31 class MediaSinksObserver; | 31 class MediaSinksObserver; |
| 32 | 32 |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 | 172 |
| 173 // Not owned by this object. | 173 // Not owned by this object. |
| 174 MediaRouter* const router_; | 174 MediaRouter* const router_; |
| 175 | 175 |
| 176 DISALLOW_COPY_AND_ASSIGN(QueryResultManager); | 176 DISALLOW_COPY_AND_ASSIGN(QueryResultManager); |
| 177 }; | 177 }; |
| 178 | 178 |
| 179 } // namespace media_router | 179 } // namespace media_router |
| 180 | 180 |
| 181 #endif // CHROME_BROWSER_UI_WEBUI_MEDIA_ROUTER_QUERY_RESULT_MANAGER_H_ | 181 #endif // CHROME_BROWSER_UI_WEBUI_MEDIA_ROUTER_QUERY_RESULT_MANAGER_H_ |
| OLD | NEW |