| 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_ROUTER_H_ | 5 #ifndef CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTER_H_ |
| 6 #define CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTER_H_ | 6 #define CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/callback.h" | 13 #include "base/callback.h" |
| 14 #include "base/callback_list.h" | 14 #include "base/callback_list.h" |
| 15 #include "base/time/time.h" | 15 #include "base/time/time.h" |
| 16 #include "chrome/browser/media/router/discovery/media_sink_internal.h" | |
| 17 #include "chrome/browser/media/router/issue.h" | |
| 18 #include "chrome/browser/media/router/media_route.h" | |
| 19 #include "chrome/browser/media/router/media_sink.h" | |
| 20 #include "chrome/browser/media/router/media_source.h" | |
| 21 #include "chrome/browser/media/router/route_message_observer.h" | 16 #include "chrome/browser/media/router/route_message_observer.h" |
| 17 #include "chrome/common/media_router/discovery/media_sink_internal.h" |
| 18 #include "chrome/common/media_router/issue.h" |
| 19 #include "chrome/common/media_router/media_route.h" |
| 20 #include "chrome/common/media_router/media_sink.h" |
| 21 #include "chrome/common/media_router/media_source.h" |
| 22 #include "components/keyed_service/core/keyed_service.h" | 22 #include "components/keyed_service/core/keyed_service.h" |
| 23 #include "content/public/browser/presentation_service_delegate.h" | 23 #include "content/public/browser/presentation_service_delegate.h" |
| 24 | 24 |
| 25 namespace content { | 25 namespace content { |
| 26 class WebContents; | 26 class WebContents; |
| 27 } | 27 } |
| 28 | 28 |
| 29 namespace url { | 29 namespace url { |
| 30 class Origin; | 30 class Origin; |
| 31 } // namespace url | 31 } // namespace url |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 | 252 |
| 253 // Unregisters a previously registered RouteMessagesObserver. |observer| will | 253 // Unregisters a previously registered RouteMessagesObserver. |observer| will |
| 254 // stop receiving further updates. | 254 // stop receiving further updates. |
| 255 virtual void UnregisterRouteMessageObserver( | 255 virtual void UnregisterRouteMessageObserver( |
| 256 RouteMessageObserver* observer) = 0; | 256 RouteMessageObserver* observer) = 0; |
| 257 }; | 257 }; |
| 258 | 258 |
| 259 } // namespace media_router | 259 } // namespace media_router |
| 260 | 260 |
| 261 #endif // CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTER_H_ | 261 #endif // CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTER_H_ |
| OLD | NEW |