| 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/callback_forward.h" | 13 #include "base/callback_forward.h" |
| 14 #include "base/macros.h" | 14 #include "base/macros.h" |
| 15 #include "base/single_thread_task_runner.h" |
| 15 #include "build/build_config.h" | 16 #include "build/build_config.h" |
| 16 #include "build/buildflag.h" | 17 #include "build/buildflag.h" |
| 17 #include "chromecast/chromecast_features.h" | 18 #include "chromecast/chromecast_features.h" |
| 18 #include "content/public/browser/certificate_request_result_type.h" | 19 #include "content/public/browser/certificate_request_result_type.h" |
| 19 #include "content/public/browser/content_browser_client.h" | 20 #include "content/public/browser/content_browser_client.h" |
| 20 | 21 |
| 21 class PrefService; | 22 class PrefService; |
| 22 | 23 |
| 23 namespace breakpad { | 24 namespace breakpad { |
| 24 class CrashHandlerHostLinux; | 25 class CrashHandlerHostLinux; |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 std::unique_ptr<media::MediaPipelineBackendFactory> | 213 std::unique_ptr<media::MediaPipelineBackendFactory> |
| 213 media_pipeline_backend_factory_; | 214 media_pipeline_backend_factory_; |
| 214 | 215 |
| 215 DISALLOW_COPY_AND_ASSIGN(CastContentBrowserClient); | 216 DISALLOW_COPY_AND_ASSIGN(CastContentBrowserClient); |
| 216 }; | 217 }; |
| 217 | 218 |
| 218 } // namespace shell | 219 } // namespace shell |
| 219 } // namespace chromecast | 220 } // namespace chromecast |
| 220 | 221 |
| 221 #endif // CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ | 222 #endif // CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |