| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ | 5 #ifndef CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ |
| 6 #define CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ | 6 #define CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 } | 22 } |
| 23 | 23 |
| 24 namespace media { | 24 namespace media { |
| 25 class BrowserCdmFactory; | 25 class BrowserCdmFactory; |
| 26 } | 26 } |
| 27 | 27 |
| 28 namespace metrics { | 28 namespace metrics { |
| 29 class MetricsService; | 29 class MetricsService; |
| 30 } | 30 } |
| 31 | 31 |
| 32 namespace net { |
| 33 class URLRequestContextGetter; |
| 34 class X509Certificate; |
| 35 } |
| 36 |
| 32 namespace service_manager { | 37 namespace service_manager { |
| 33 class InterfaceRegistry; | 38 class InterfaceRegistry; |
| 34 } | 39 } |
| 35 | 40 |
| 36 namespace chromecast { | 41 namespace chromecast { |
| 37 class CastService; | 42 class CastService; |
| 38 | 43 |
| 39 namespace media { | 44 namespace media { |
| 40 class MediaCapsImpl; | 45 class MediaCapsImpl; |
| 41 class MediaPipelineBackend; | 46 class MediaPipelineBackend; |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 CastBrowserMainParts* cast_browser_main_parts_; | 209 CastBrowserMainParts* cast_browser_main_parts_; |
| 205 std::unique_ptr<URLRequestContextFactory> url_request_context_factory_; | 210 std::unique_ptr<URLRequestContextFactory> url_request_context_factory_; |
| 206 | 211 |
| 207 DISALLOW_COPY_AND_ASSIGN(CastContentBrowserClient); | 212 DISALLOW_COPY_AND_ASSIGN(CastContentBrowserClient); |
| 208 }; | 213 }; |
| 209 | 214 |
| 210 } // namespace shell | 215 } // namespace shell |
| 211 } // namespace chromecast | 216 } // namespace chromecast |
| 212 | 217 |
| 213 #endif // CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ | 218 #endif // CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |