| 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> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "build/build_config.h" | 14 #include "build/build_config.h" |
| 15 #include "content/public/browser/certificate_request_result_type.h" | 15 #include "content/public/browser/certificate_request_result_type.h" |
| 16 #include "content/public/browser/content_browser_client.h" | 16 #include "content/public/browser/content_browser_client.h" |
| 17 | 17 |
| 18 class PrefService; | 18 class PrefService; |
| 19 | 19 |
| 20 namespace breakpad { | 20 namespace breakpad { |
| 21 class CrashHandlerHostLinux; | 21 class CrashHandlerHostLinux; |
| 22 } | 22 } |
| 23 | 23 |
| 24 namespace media { | |
| 25 class BrowserCdmFactory; | |
| 26 } | |
| 27 | |
| 28 namespace metrics { | 24 namespace metrics { |
| 29 class MetricsService; | 25 class MetricsService; |
| 30 } | 26 } |
| 31 | 27 |
| 32 namespace net { | 28 namespace net { |
| 33 class URLRequestContextGetter; | 29 class URLRequestContextGetter; |
| 34 class X509Certificate; | 30 class X509Certificate; |
| 35 } | 31 } |
| 36 | 32 |
| 37 namespace service_manager { | 33 namespace service_manager { |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 CastBrowserMainParts* cast_browser_main_parts_; | 205 CastBrowserMainParts* cast_browser_main_parts_; |
| 210 std::unique_ptr<URLRequestContextFactory> url_request_context_factory_; | 206 std::unique_ptr<URLRequestContextFactory> url_request_context_factory_; |
| 211 | 207 |
| 212 DISALLOW_COPY_AND_ASSIGN(CastContentBrowserClient); | 208 DISALLOW_COPY_AND_ASSIGN(CastContentBrowserClient); |
| 213 }; | 209 }; |
| 214 | 210 |
| 215 } // namespace shell | 211 } // namespace shell |
| 216 } // namespace chromecast | 212 } // namespace chromecast |
| 217 | 213 |
| 218 #endif // CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ | 214 #endif // CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |