| 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_PRESENTATION_SERVICE_DELEGATE_IMPL_H_ | 5 #ifndef CHROME_BROWSER_MEDIA_ROUTER_PRESENTATION_SERVICE_DELEGATE_IMPL_H_ |
| 6 #define CHROME_BROWSER_MEDIA_ROUTER_PRESENTATION_SERVICE_DELEGATE_IMPL_H_ | 6 #define CHROME_BROWSER_MEDIA_ROUTER_PRESENTATION_SERVICE_DELEGATE_IMPL_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <utility> | 11 #include <utility> |
| 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/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.h" |
| 17 #include "base/observer_list.h" | 17 #include "base/observer_list.h" |
| 18 #include "chrome/browser/media/router/media_router.h" | 18 #include "chrome/browser/media/router/media_router.h" |
| 19 #include "chrome/browser/media/router/media_source.h" | |
| 20 #include "chrome/browser/media/router/presentation_request.h" | 19 #include "chrome/browser/media/router/presentation_request.h" |
| 21 #include "chrome/browser/media/router/presentation_service_delegate_observers.h" | 20 #include "chrome/browser/media/router/presentation_service_delegate_observers.h" |
| 22 #include "chrome/browser/media/router/render_frame_host_id.h" | 21 #include "chrome/browser/media/router/render_frame_host_id.h" |
| 22 #include "chrome/common/media_router/media_source.h" |
| 23 #include "content/public/browser/presentation_service_delegate.h" | 23 #include "content/public/browser/presentation_service_delegate.h" |
| 24 #include "content/public/browser/web_contents_observer.h" | 24 #include "content/public/browser/web_contents_observer.h" |
| 25 #include "content/public/browser/web_contents_user_data.h" | 25 #include "content/public/browser/web_contents_user_data.h" |
| 26 | 26 |
| 27 namespace content { | 27 namespace content { |
| 28 class PresentationScreenAvailabilityListener; | 28 class PresentationScreenAvailabilityListener; |
| 29 class WebContents; | 29 class WebContents; |
| 30 struct PresentationConnectionMessage; | 30 struct PresentationConnectionMessage; |
| 31 struct PresentationInfo; | 31 struct PresentationInfo; |
| 32 } // namespace content | 32 } // namespace content |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 PresentationServiceDelegateObservers observers_; | 225 PresentationServiceDelegateObservers observers_; |
| 226 | 226 |
| 227 base::WeakPtrFactory<PresentationServiceDelegateImpl> weak_factory_; | 227 base::WeakPtrFactory<PresentationServiceDelegateImpl> weak_factory_; |
| 228 | 228 |
| 229 DISALLOW_COPY_AND_ASSIGN(PresentationServiceDelegateImpl); | 229 DISALLOW_COPY_AND_ASSIGN(PresentationServiceDelegateImpl); |
| 230 }; | 230 }; |
| 231 | 231 |
| 232 } // namespace media_router | 232 } // namespace media_router |
| 233 | 233 |
| 234 #endif // CHROME_BROWSER_MEDIA_ROUTER_PRESENTATION_SERVICE_DELEGATE_IMPL_H_ | 234 #endif // CHROME_BROWSER_MEDIA_ROUTER_PRESENTATION_SERVICE_DELEGATE_IMPL_H_ |
| OLD | NEW |