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 #include "chromecast/browser/cast_browser_process.h" | 5 #include "chromecast/browser/cast_browser_process.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "base/prefs/pref_service.h" | 8 #include "base/prefs/pref_service.h" |
9 #include "chromecast/base/metrics/cast_metrics_helper.h" | 9 #include "chromecast/base/metrics/cast_metrics_helper.h" |
10 #include "chromecast/browser/cast_browser_context.h" | 10 #include "chromecast/browser/cast_browser_context.h" |
11 #include "chromecast/browser/cast_resource_dispatcher_host_delegate.h" | 11 #include "chromecast/browser/cast_resource_dispatcher_host_delegate.h" |
12 #include "chromecast/browser/devtools/remote_debugging_server.h" | 12 #include "chromecast/browser/devtools/remote_debugging_server.h" |
13 #include "chromecast/browser/metrics/cast_metrics_service_client.h" | 13 #include "chromecast/browser/metrics/cast_metrics_service_client.h" |
14 #include "chromecast/net/connectivity_checker.h" | 14 #include "chromecast/net/connectivity_checker.h" |
15 #include "chromecast/service/cast_service.h" | 15 #include "chromecast/service/cast_service.h" |
16 | 16 |
17 #if defined(OS_ANDROID) | 17 #if defined(OS_ANDROID) |
18 #include "components/crash/browser/crash_dump_manager_android.h" | 18 #include "components/crash/content/browser/crash_dump_manager_android.h" |
19 #endif // defined(OS_ANDROID) | 19 #endif // defined(OS_ANDROID) |
20 | 20 |
21 #if defined(USE_AURA) | 21 #if defined(USE_AURA) |
22 #include "chromecast/graphics/cast_screen.h" | 22 #include "chromecast/graphics/cast_screen.h" |
23 #endif // defined(USE_AURA) | 23 #endif // defined(USE_AURA) |
24 | 24 |
25 namespace chromecast { | 25 namespace chromecast { |
26 namespace shell { | 26 namespace shell { |
27 | 27 |
28 namespace { | 28 namespace { |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 connectivity_checker_.swap(connectivity_checker); | 116 connectivity_checker_.swap(connectivity_checker); |
117 } | 117 } |
118 | 118 |
119 void CastBrowserProcess::SetNetLog(net::NetLog* net_log) { | 119 void CastBrowserProcess::SetNetLog(net::NetLog* net_log) { |
120 DCHECK(!net_log_); | 120 DCHECK(!net_log_); |
121 net_log_ = net_log; | 121 net_log_ = net_log; |
122 } | 122 } |
123 | 123 |
124 } // namespace shell | 124 } // namespace shell |
125 } // namespace chromecast | 125 } // namespace chromecast |
OLD | NEW |