forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcast_content_browser_client.cc
810 lines (714 loc) · 31.5 KB
/
cast_content_browser_client.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chromecast/browser/cast_content_browser_client.h"
#include <stddef.h>
#include <string>
#include <utility>
#include "base/base_switches.h"
#include "base/command_line.h"
#include "base/files/scoped_file.h"
#include "base/i18n/rtl.h"
#include "base/json/json_reader.h"
#include "base/macros.h"
#include "base/path_service.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/utf_string_conversions.h"
#include "base/threading/thread_task_runner_handle.h"
#include "build/build_config.h"
#include "chromecast/base/cast_constants.h"
#include "chromecast/base/cast_features.h"
#include "chromecast/base/cast_paths.h"
#include "chromecast/base/chromecast_switches.h"
#include "chromecast/browser/application_session_id_manager.h"
#include "chromecast/browser/cast_browser_context.h"
#include "chromecast/browser/cast_browser_main_parts.h"
#include "chromecast/browser/cast_browser_process.h"
#include "chromecast/browser/cast_navigation_ui_data.h"
#include "chromecast/browser/cast_network_delegate.h"
#include "chromecast/browser/cast_quota_permission_context.h"
#include "chromecast/browser/cast_resource_dispatcher_host_delegate.h"
#include "chromecast/browser/devtools/cast_devtools_manager_delegate.h"
#include "chromecast/browser/grit/cast_browser_resources.h"
#include "chromecast/browser/media/media_caps_impl.h"
#include "chromecast/browser/renderer_config.h"
#include "chromecast/browser/service/cast_service_simple.h"
#include "chromecast/browser/tts/tts_controller.h"
#include "chromecast/browser/url_request_context_factory.h"
#include "chromecast/common/global_descriptors.h"
#include "chromecast/media/audio/cast_audio_manager.h"
#include "chromecast/media/cma/backend/cma_backend_factory_impl.h"
#include "chromecast/media/cma/backend/media_pipeline_backend_manager.h"
#include "chromecast/public/media/media_pipeline_backend.h"
#include "components/network_hints/browser/network_hints_message_filter.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/certificate_request_result_type.h"
#include "content/public/browser/client_certificate_delegate.h"
#include "content/public/browser/navigation_handle.h"
#include "content/public/browser/navigation_ui_data.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/render_process_host.h"
#include "content/public/browser/resource_dispatcher_host.h"
#include "content/public/browser/storage_partition.h"
#include "content/public/browser/web_contents.h"
#include "content/public/common/content_descriptors.h"
#include "content/public/common/content_switches.h"
#include "content/public/common/service_names.mojom.h"
#include "content/public/common/url_constants.h"
#include "content/public/common/web_preferences.h"
#include "media/audio/audio_thread_impl.h"
#include "media/mojo/buildflags.h"
#include "net/ssl/ssl_cert_request_info.h"
#include "net/url_request/url_request_context_getter.h"
#include "services/service_manager/embedder/descriptors.h"
#include "ui/base/resource/resource_bundle.h"
#include "ui/display/display.h"
#include "ui/display/screen.h"
#include "ui/gl/gl_switches.h"
#if BUILDFLAG(ENABLE_MOJO_MEDIA_IN_BROWSER_PROCESS)
#include "chromecast/media/service/cast_mojo_media_client.h"
#include "media/mojo/interfaces/constants.mojom.h" // nogncheck
#include "media/mojo/services/media_service.h" // nogncheck
#endif // ENABLE_MOJO_MEDIA_IN_BROWSER_PROCESS
#if defined(OS_LINUX)
#include "components/services/font/font_service_app.h" // nogncheck
#include "components/services/font/public/interfaces/constants.mojom.h" // nogncheck
#endif
#if defined(OS_LINUX) || defined(OS_ANDROID)
#include "components/crash/content/app/breakpad_linux.h"
#include "components/crash/content/browser/crash_handler_host_linux.h"
#endif // defined(OS_LINUX) || defined(OS_ANDROID)
#if defined(OS_ANDROID)
#include "components/cdm/browser/cdm_message_filter_android.h"
#include "components/crash/content/browser/crash_dump_observer_android.h"
#if !BUILDFLAG(IS_CAST_USING_CMA_BACKEND)
#include "components/cdm/browser/media_drm_storage_impl.h"
#include "url/origin.h"
#endif // !BUILDFLAG(IS_CAST_USING_CMA_BACKEND)
#else
#include "chromecast/browser/memory_pressure_controller_impl.h"
#endif // defined(OS_ANDROID)
#if BUILDFLAG(IS_CAST_USING_CMA_BACKEND)
#include "chromecast/media/cdm/cast_cdm_factory.h"
#endif // BUILDFLAG(IS_CAST_USING_CMA_BACKEND)
#if defined(USE_ALSA)
#include "chromecast/media/audio/cast_audio_manager_alsa.h" // nogncheck
#endif // defined(USE_ALSA)
#if BUILDFLAG(ENABLE_CHROMECAST_EXTENSIONS)
#include "chromecast/browser/cast_extension_message_filter.h" // nogncheck
#include "extensions/browser/extension_message_filter.h" // nogncheck
#include "extensions/browser/extension_registry.h" // nogncheck
#include "extensions/browser/extension_system.h" // nogncheck
#include "extensions/browser/guest_view/extensions_guest_view_message_filter.h" // nogncheck
#include "extensions/browser/info_map.h" // nogncheck
#include "extensions/browser/io_thread_extension_message_filter.h" // nogncheck
#include "extensions/browser/process_map.h" // nogncheck
#endif
namespace chromecast {
namespace shell {
namespace {
#if BUILDFLAG(ENABLE_MOJO_MEDIA_IN_BROWSER_PROCESS)
static std::unique_ptr<service_manager::Service> CreateMediaService(
CastContentBrowserClient* browser_client) {
auto mojo_media_client = std::make_unique<media::CastMojoMediaClient>(
browser_client->GetCmaBackendFactory(),
base::Bind(&CastContentBrowserClient::CreateCdmFactory,
base::Unretained(browser_client)),
browser_client->GetVideoModeSwitcher(),
browser_client->GetVideoResolutionPolicy(),
browser_client->media_resource_tracker());
return std::make_unique<::media::MediaService>(std::move(mojo_media_client));
}
#endif // BUILDFLAG(ENABLE_MOJO_MEDIA_IN_BROWSER_PROCESS)
#if defined(OS_ANDROID) && !BUILDFLAG(IS_CAST_USING_CMA_BACKEND)
void CreateMediaDrmStorage(content::RenderFrameHost* render_frame_host,
::media::mojom::MediaDrmStorageRequest request) {
DVLOG(1) << __func__;
PrefService* pref_service = CastBrowserProcess::GetInstance()->pref_service();
DCHECK(pref_service);
if (render_frame_host->GetLastCommittedOrigin().unique()) {
DVLOG(1) << __func__ << ": Unique origin.";
return;
}
// The object will be deleted on connection error, or when the frame navigates
// away.
new cdm::MediaDrmStorageImpl(render_frame_host, pref_service,
std::move(request));
}
#endif // defined(OS_ANDROID) && !BUILDFLAG(IS_CAST_USING_CMA_BACKEND)
// Gets the URL request context getter for the single Cast browser context.
// Must be called on the UI thread.
scoped_refptr<net::URLRequestContextGetter>
GetRequestContextGetterFromBrowserContext() {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
return scoped_refptr<net::URLRequestContextGetter>(
content::BrowserContext::GetDefaultStoragePartition(
CastBrowserProcess::GetInstance()->browser_context())
->GetURLRequestContext());
}
} // namespace
CastContentBrowserClient::CastContentBrowserClient()
: cast_browser_main_parts_(nullptr),
url_request_context_factory_(new URLRequestContextFactory()),
renderer_config_manager_(std::make_unique<RendererConfigManager>()) {}
CastContentBrowserClient::~CastContentBrowserClient() {
content::BrowserThread::DeleteSoon(content::BrowserThread::IO, FROM_HERE,
url_request_context_factory_.release());
}
std::unique_ptr<CastService> CastContentBrowserClient::CreateCastService(
content::BrowserContext* browser_context,
PrefService* pref_service,
net::URLRequestContextGetter* request_context_getter,
media::VideoPlaneController* video_plane_controller,
CastWindowManager* window_manager) {
return std::make_unique<CastServiceSimple>(browser_context, pref_service,
window_manager);
}
media::VideoModeSwitcher* CastContentBrowserClient::GetVideoModeSwitcher() {
return nullptr;
}
#if BUILDFLAG(IS_CAST_USING_CMA_BACKEND)
media::VideoResolutionPolicy*
CastContentBrowserClient::GetVideoResolutionPolicy() {
return nullptr;
}
scoped_refptr<base::SingleThreadTaskRunner>
CastContentBrowserClient::GetMediaTaskRunner() {
DCHECK(cast_browser_main_parts_);
return cast_browser_main_parts_->GetMediaTaskRunner();
}
media::CmaBackendFactory* CastContentBrowserClient::GetCmaBackendFactory() {
DCHECK(GetMediaTaskRunner()->BelongsToCurrentThread());
if (!cma_backend_factory_) {
cma_backend_factory_ = std::make_unique<media::CmaBackendFactoryImpl>(
media_pipeline_backend_manager());
}
return cma_backend_factory_.get();
}
media::MediaResourceTracker*
CastContentBrowserClient::media_resource_tracker() {
return cast_browser_main_parts_->media_resource_tracker();
}
media::MediaPipelineBackendManager*
CastContentBrowserClient::media_pipeline_backend_manager() {
DCHECK(cast_browser_main_parts_);
return cast_browser_main_parts_->media_pipeline_backend_manager();
}
std::unique_ptr<::media::AudioManager>
CastContentBrowserClient::CreateAudioManager(
::media::AudioLogFactory* audio_log_factory) {
// TODO(alokp): Consider switching off the mixer on audio platforms
// because we already have a mixer in the audio pipeline downstream of
// CastAudioManager.
bool use_mixer = true;
#if defined(USE_ALSA)
return std::make_unique<media::CastAudioManagerAlsa>(
std::make_unique<::media::AudioThreadImpl>(), audio_log_factory,
std::make_unique<media::CmaBackendFactoryImpl>(
media_pipeline_backend_manager()),
GetMediaTaskRunner(), use_mixer);
#else
return std::make_unique<media::CastAudioManager>(
std::make_unique<::media::AudioThreadImpl>(), audio_log_factory,
std::make_unique<media::CmaBackendFactoryImpl>(
media_pipeline_backend_manager()),
GetMediaTaskRunner(), use_mixer);
#endif // defined(USE_ALSA)
}
bool CastContentBrowserClient::OverridesAudioManager() {
// See CreateAudioManager().
return true;
}
std::unique_ptr<::media::CdmFactory>
CastContentBrowserClient::CreateCdmFactory() {
#if BUILDFLAG(ENABLE_MOJO_MEDIA_IN_BROWSER_PROCESS)
return std::make_unique<media::CastCdmFactory>(GetMediaTaskRunner(),
media_resource_tracker());
#endif // BUILDFLAG(ENABLE_MOJO_MEDIA_IN_BROWSER_PROCESS)
return nullptr;
}
#endif // BUILDFLAG(IS_CAST_USING_CMA_BACKEND)
media::MediaCapsImpl* CastContentBrowserClient::media_caps() {
DCHECK(cast_browser_main_parts_);
return cast_browser_main_parts_->media_caps();
}
#if !defined(OS_ANDROID) && !defined(OS_FUCHSIA)
base::WeakPtr<device::BluetoothAdapterCast>
CastContentBrowserClient::CreateBluetoothAdapter() {
NOTREACHED() << "Bluetooth Adapter is not supported!";
return nullptr;
}
#endif // !defined(OS_ANDROID) && !defined(OS_FUCHSIA)
void CastContentBrowserClient::SetMetricsClientId(
const std::string& client_id) {}
void CastContentBrowserClient::RegisterMetricsProviders(
::metrics::MetricsService* metrics_service) {}
bool CastContentBrowserClient::EnableRemoteDebuggingImmediately() {
return true;
}
content::BrowserMainParts* CastContentBrowserClient::CreateBrowserMainParts(
const content::MainFunctionParams& parameters) {
DCHECK(!cast_browser_main_parts_);
auto main_parts = CastBrowserMainParts::Create(
parameters, url_request_context_factory_.get());
cast_browser_main_parts_ = main_parts.get();
CastBrowserProcess::GetInstance()->SetCastContentBrowserClient(this);
// TODO(halliwell): would like to change CreateBrowserMainParts to return
// unique_ptr, then we don't have to release.
return main_parts.release();
}
void CastContentBrowserClient::RenderProcessWillLaunch(
content::RenderProcessHost* host,
service_manager::mojom::ServiceRequest* service_request) {
// Forcibly trigger I/O-thread URLRequestContext initialization before
// getting HostResolver.
content::BrowserThread::PostTaskAndReplyWithResult(
content::BrowserThread::IO, FROM_HERE,
base::Bind(
&net::URLRequestContextGetter::GetURLRequestContext,
base::Unretained(url_request_context_factory_->GetSystemGetter())),
base::Bind(&CastContentBrowserClient::AddNetworkHintsMessageFilter,
base::Unretained(this), host->GetID()));
#if defined(OS_ANDROID)
// Cast on Android always allows persisting data.
//
// Cast on Android build always uses kForceVideoOverlays command line switch
// such that secure codecs can always be rendered.
//
// TODO(yucliu): On Clank, secure codecs support is tied to AndroidOverlay.
// Remove kForceVideoOverlays and swtich to the Clank model for secure codecs
// support.
host->AddFilter(new cdm::CdmMessageFilterAndroid(true, true));
#endif // defined(OS_ANDROID)
#if BUILDFLAG(ENABLE_CHROMECAST_EXTENSIONS)
int render_process_id = host->GetID();
content::BrowserContext* browser_context =
cast_browser_main_parts_->browser_context();
host->AddFilter(new extensions::ExtensionMessageFilter(render_process_id,
browser_context));
host->AddFilter(new extensions::IOThreadExtensionMessageFilter(
render_process_id, browser_context));
host->AddFilter(new extensions::ExtensionsGuestViewMessageFilter(
render_process_id, browser_context));
host->AddFilter(
new CastExtensionMessageFilter(render_process_id, browser_context));
#endif
}
void CastContentBrowserClient::AddNetworkHintsMessageFilter(
int render_process_id,
net::URLRequestContext* context) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
content::RenderProcessHost* host =
content::RenderProcessHost::FromID(render_process_id);
if (!host)
return;
scoped_refptr<content::BrowserMessageFilter> network_hints_message_filter(
new network_hints::NetworkHintsMessageFilter(
url_request_context_factory_->host_resolver()));
host->AddFilter(network_hints_message_filter.get());
}
bool CastContentBrowserClient::IsHandledURL(const GURL& url) {
if (!url.is_valid())
return false;
static const char* const kProtocolList[] = {
content::kChromeUIScheme, content::kChromeDevToolsScheme,
kChromeResourceScheme, url::kBlobScheme,
url::kDataScheme, url::kFileSystemScheme,
};
const std::string& scheme = url.scheme();
for (size_t i = 0; i < arraysize(kProtocolList); ++i) {
if (scheme == kProtocolList[i])
return true;
}
if (scheme == url::kFileScheme) {
return base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kEnableLocalFileAccesses);
}
return false;
}
void CastContentBrowserClient::SiteInstanceGotProcess(
content::SiteInstance* site_instance) {
#if BUILDFLAG(ENABLE_CHROMECAST_EXTENSIONS)
// If this isn't an extension renderer there's nothing to do.
extensions::ExtensionRegistry* registry =
extensions::ExtensionRegistry::Get(site_instance->GetBrowserContext());
const extensions::Extension* extension =
registry->enabled_extensions().GetExtensionOrAppByURL(
site_instance->GetSiteURL());
if (!extension)
return;
extensions::ExtensionSystem* extension_system =
extensions::ExtensionSystem::Get(
cast_browser_main_parts_->browser_context());
extensions::ProcessMap::Get(cast_browser_main_parts_->browser_context())
->Insert(extension->id(), site_instance->GetProcess()->GetID(),
site_instance->GetId());
content::BrowserThread::PostTask(
content::BrowserThread::IO, FROM_HERE,
base::BindOnce(&extensions::InfoMap::RegisterExtensionProcess,
extension_system->info_map(), extension->id(),
site_instance->GetProcess()->GetID(),
site_instance->GetId()));
#endif
}
void CastContentBrowserClient::AppendExtraCommandLineSwitches(
base::CommandLine* command_line,
int child_process_id) {
std::string process_type =
command_line->GetSwitchValueNative(switches::kProcessType);
base::CommandLine* browser_command_line =
base::CommandLine::ForCurrentProcess();
#if !defined(OS_FUCHSIA)
// IsCrashReporterEnabled() is set when InitCrashReporter() is called, and
// controlled by GetBreakpadClient()->EnableBreakpadForProcess(), therefore
// it's ok to add switch to every process here.
if (breakpad::IsCrashReporterEnabled()) {
command_line->AppendSwitch(switches::kEnableCrashReporter);
}
#endif // !defined(OS_FUCHSIA)
// Command-line for different processes.
if (process_type == switches::kRendererProcess) {
// Any browser command-line switches that should be propagated to
// the renderer go here.
static const char* const kForwardSwitches[] = {
switches::kForceMediaResolutionHeight,
switches::kForceMediaResolutionWidth};
command_line->CopySwitchesFrom(*browser_command_line, kForwardSwitches,
arraysize(kForwardSwitches));
} else if (process_type == switches::kUtilityProcess) {
if (browser_command_line->HasSwitch(switches::kAudioOutputChannels)) {
command_line->AppendSwitchASCII(switches::kAudioOutputChannels,
browser_command_line->GetSwitchValueASCII(
switches::kAudioOutputChannels));
}
} else if (process_type == switches::kGpuProcess) {
#if defined(OS_LINUX)
// Necessary for accelerated 2d canvas. By default on Linux, Chromium assumes
// GLES2 contexts can be lost to a power-save mode, which breaks GPU canvas
// apps.
command_line->AppendSwitch(switches::kGpuNoContextLost);
#endif
#if defined(USE_AURA)
static const char* const kForwardSwitches[] = {
switches::kCastInitialScreenHeight, switches::kCastInitialScreenWidth,
switches::kVSyncInterval,
};
command_line->CopySwitchesFrom(*browser_command_line, kForwardSwitches,
arraysize(kForwardSwitches));
auto display = display::Screen::GetScreen()->GetPrimaryDisplay();
gfx::Size res = display.GetSizeInPixel();
if (display.rotation() == display::Display::ROTATE_90 ||
display.rotation() == display::Display::ROTATE_270) {
res = gfx::Size(res.height(), res.width());
}
if (!command_line->HasSwitch(switches::kCastInitialScreenWidth)) {
command_line->AppendSwitchASCII(switches::kCastInitialScreenWidth,
base::IntToString(res.width()));
}
if (!command_line->HasSwitch(switches::kCastInitialScreenHeight)) {
command_line->AppendSwitchASCII(switches::kCastInitialScreenHeight,
base::IntToString(res.height()));
}
if (chromecast::IsFeatureEnabled(kSingleBuffer)) {
command_line->AppendSwitchASCII(switches::kGraphicsBufferCount, "1");
} else if (chromecast::IsFeatureEnabled(chromecast::kTripleBuffer720)) {
command_line->AppendSwitchASCII(switches::kGraphicsBufferCount, "3");
}
#endif // defined(USE_AURA)
}
auto renderer_config =
renderer_config_manager_->GetRendererConfig(child_process_id);
if (renderer_config) {
renderer_config->AppendSwitchesTo(command_line);
}
}
void CastContentBrowserClient::OverrideWebkitPrefs(
content::RenderViewHost* render_view_host,
content::WebPreferences* prefs) {
prefs->allow_scripts_to_close_windows = true;
// TODO(halliwell): http://crbug.com/391089. This pref defaults to to true
// because some content providers such as YouTube use plain http requests
// to retrieve media data chunks while running in a https page. This pref
// should be disabled once all the content providers are no longer doing that.
prefs->allow_running_insecure_content = true;
// Enable 5% margins for WebVTT cues to keep within title-safe area
prefs->text_track_margin_percentage = 5;
prefs->hide_scrollbars = true;
#if defined(OS_ANDROID)
// Enable the television style for viewport so that all cast apps have a
// 1280px wide layout viewport by default.
DCHECK(prefs->viewport_enabled);
DCHECK(prefs->viewport_meta_enabled);
prefs->viewport_style = content::ViewportStyle::TELEVISION;
#endif // defined(OS_ANDROID)
}
void CastContentBrowserClient::ResourceDispatcherHostCreated() {
resource_dispatcher_host_delegate_.reset(
new CastResourceDispatcherHostDelegate);
content::ResourceDispatcherHost::Get()->SetDelegate(
resource_dispatcher_host_delegate_.get());
}
std::string CastContentBrowserClient::GetApplicationLocale() {
const std::string locale(base::i18n::GetConfiguredLocale());
return locale.empty() ? "en-US" : locale;
}
void CastContentBrowserClient::GetGeolocationRequestContext(
base::OnceCallback<void(scoped_refptr<net::URLRequestContextGetter>)>
callback) {
content::BrowserThread::PostTaskAndReplyWithResult(
content::BrowserThread::UI, FROM_HERE,
base::BindOnce(&GetRequestContextGetterFromBrowserContext),
std::move(callback));
}
content::QuotaPermissionContext*
CastContentBrowserClient::CreateQuotaPermissionContext() {
return new CastQuotaPermissionContext();
}
void CastContentBrowserClient::GetQuotaSettings(
content::BrowserContext* context,
content::StoragePartition* partition,
storage::OptionalQuotaSettingsCallback callback) {
storage::GetNominalDynamicSettings(
partition->GetPath(), context->IsOffTheRecord(), std::move(callback));
}
void CastContentBrowserClient::AllowCertificateError(
content::WebContents* web_contents,
int cert_error,
const net::SSLInfo& ssl_info,
const GURL& request_url,
content::ResourceType resource_type,
bool strict_enforcement,
bool expired_previous_decision,
const base::Callback<void(content::CertificateRequestResultType)>&
callback) {
// Allow developers to override certificate errors.
// Otherwise, any fatal certificate errors will cause an abort.
if (!callback.is_null()) {
callback.Run(content::CERTIFICATE_REQUEST_RESULT_TYPE_CANCEL);
}
return;
}
void CastContentBrowserClient::SelectClientCertificate(
content::WebContents* web_contents,
net::SSLCertRequestInfo* cert_request_info,
net::ClientCertIdentityList client_certs,
std::unique_ptr<content::ClientCertificateDelegate> delegate) {
GURL requesting_url("https://" + cert_request_info->host_and_port.ToString());
if (!requesting_url.is_valid()) {
LOG(ERROR) << "Invalid URL string: "
<< requesting_url.possibly_invalid_spec();
delegate->ContinueWithCertificate(nullptr, nullptr);
return;
}
// In our case there are no relevant certs in |client_certs|. The cert
// we need to return (if permitted) is the Cast device cert, which we can
// access directly through the ClientAuthSigner instance. However, we need to
// be on the IO thread to determine whether the app is whitelisted to return
// it, because CastNetworkDelegate is bound to the IO thread.
// Subsequently, the callback must then itself be performed back here
// on the UI thread.
//
// TODO(davidben): Stop using child ID to identify an app.
std::string session_id =
CastNavigationUIData::GetSessionIdForWebContents(web_contents);
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
content::BrowserThread::PostTask(
content::BrowserThread::IO, FROM_HERE,
base::BindOnce(
&CastContentBrowserClient::SelectClientCertificateOnIOThread,
base::Unretained(this), requesting_url, session_id,
web_contents->GetMainFrame()->GetProcess()->GetID(),
base::SequencedTaskRunnerHandle::Get(),
base::Bind(
&content::ClientCertificateDelegate::ContinueWithCertificate,
base::Owned(delegate.release()))));
}
void CastContentBrowserClient::SelectClientCertificateOnIOThread(
GURL requesting_url,
const std::string& session_id,
int render_process_id,
scoped_refptr<base::SequencedTaskRunner> original_runner,
const base::Callback<void(scoped_refptr<net::X509Certificate>,
scoped_refptr<net::SSLPrivateKey>)>&
continue_callback) {
DCHECK_CURRENTLY_ON(content::BrowserThread::IO);
CastNetworkDelegate* network_delegate =
url_request_context_factory_->app_network_delegate();
if (network_delegate->IsWhitelisted(requesting_url, session_id,
render_process_id, false)) {
original_runner->PostTask(
FROM_HERE,
base::BindOnce(continue_callback, DeviceCert(), DeviceKey()));
return;
} else {
LOG(ERROR) << "Invalid host for client certificate request: "
<< requesting_url.host()
<< " with render_process_id: " << render_process_id;
}
original_runner->PostTask(
FROM_HERE, base::BindOnce(continue_callback, nullptr, nullptr));
}
bool CastContentBrowserClient::CanCreateWindow(
content::RenderFrameHost* opener,
const GURL& opener_url,
const GURL& opener_top_level_frame_url,
const GURL& source_origin,
content::mojom::WindowContainerType container_type,
const GURL& target_url,
const content::Referrer& referrer,
const std::string& frame_name,
WindowOpenDisposition disposition,
const blink::mojom::WindowFeatures& features,
bool user_gesture,
bool opener_suppressed,
bool* no_javascript_access) {
*no_javascript_access = true;
return false;
}
void CastContentBrowserClient::ExposeInterfacesToRenderer(
service_manager::BinderRegistry* registry,
blink::AssociatedInterfaceRegistry* associated_registry,
content::RenderProcessHost* render_process_host) {
registry->AddInterface(
base::Bind(&media::MediaCapsImpl::AddBinding,
base::Unretained(cast_browser_main_parts_->media_caps())),
base::ThreadTaskRunnerHandle::Get());
#if !defined(OS_ANDROID) && !defined(OS_FUCHSIA)
if (!memory_pressure_controller_) {
memory_pressure_controller_.reset(new MemoryPressureControllerImpl());
}
registry->AddInterface(
base::Bind(&MemoryPressureControllerImpl::AddBinding,
base::Unretained(memory_pressure_controller_.get())),
base::ThreadTaskRunnerHandle::Get());
#endif // !defined(OS_ANDROID) && !defined(OS_FUCHSIA)
}
void CastContentBrowserClient::ExposeInterfacesToMediaService(
service_manager::BinderRegistry* registry,
content::RenderFrameHost* render_frame_host) {
#if defined(OS_ANDROID) && !BUILDFLAG(IS_CAST_USING_CMA_BACKEND)
registry->AddInterface(
base::BindRepeating(&CreateMediaDrmStorage, render_frame_host));
#endif
std::string application_session_id =
CastNavigationUIData::GetSessionIdForWebContents(
content::WebContents::FromRenderFrameHost(render_frame_host));
registry->AddInterface(base::BindRepeating(
&media::CreateApplicationSessionIdManager, render_frame_host,
std::move(application_session_id)));
}
void CastContentBrowserClient::RegisterInProcessServices(
StaticServiceMap* services,
content::ServiceManagerConnection* connection) {
#if BUILDFLAG(ENABLE_MOJO_MEDIA_IN_BROWSER_PROCESS)
service_manager::EmbeddedServiceInfo info;
info.factory = base::Bind(&CreateMediaService, base::Unretained(this));
info.task_runner = GetMediaTaskRunner();
services->insert(std::make_pair(::media::mojom::kMediaServiceName, info));
#endif
}
void CastContentBrowserClient::RegisterOutOfProcessServices(
OutOfProcessServiceMap* services) {
#if defined(OS_LINUX)
(*services)[font_service::mojom::kServiceName] =
base::BindRepeating(&base::ASCIIToUTF16, "Font Service");
#endif
}
std::unique_ptr<base::Value>
CastContentBrowserClient::GetServiceManifestOverlay(
base::StringPiece service_name) {
ui::ResourceBundle& rb = ui::ResourceBundle::GetSharedInstance();
int id = -1;
if (service_name == content::mojom::kBrowserServiceName) {
id = IDR_CAST_CONTENT_BROWSER_MANIFEST_OVERLAY;
} else if (service_name == content::mojom::kPackagedServicesServiceName) {
id = IDR_CAST_CONTENT_PACKAGED_SERVICES_MANIFEST_OVERLAY;
} else if (service_name == content::mojom::kRendererServiceName) {
id = IDR_CAST_CONTENT_RENDERER_MANIFEST_OVERLAY;
} else {
return nullptr;
}
base::StringPiece manifest_contents =
rb.GetRawDataResourceForScale(id, ui::ScaleFactor::SCALE_FACTOR_NONE);
return base::JSONReader::Read(manifest_contents);
}
void CastContentBrowserClient::GetAdditionalMappedFilesForChildProcess(
const base::CommandLine& command_line,
int child_process_id,
content::PosixFileDescriptorInfo* mappings) {
#if defined(OS_ANDROID)
mappings->ShareWithRegion(
kAndroidPakDescriptor,
base::GlobalDescriptors::GetInstance()->Get(kAndroidPakDescriptor),
base::GlobalDescriptors::GetInstance()->GetRegion(kAndroidPakDescriptor));
breakpad::CrashDumpObserver::GetInstance()->BrowserChildProcessStarted(
child_process_id, mappings);
#elif !defined(OS_FUCHSIA)
// TODO(crbug.com/753619): Enable crash reporting on Fuchsia.
int crash_signal_fd = GetCrashSignalFD(command_line);
if (crash_signal_fd >= 0) {
mappings->Share(service_manager::kCrashDumpSignal, crash_signal_fd);
}
#endif // !defined(OS_FUCHSIA)
}
void CastContentBrowserClient::GetAdditionalWebUISchemes(
std::vector<std::string>* additional_schemes) {
additional_schemes->push_back(kChromeResourceScheme);
}
content::DevToolsManagerDelegate*
CastContentBrowserClient::GetDevToolsManagerDelegate() {
return new CastDevToolsManagerDelegate();
}
std::unique_ptr<content::NavigationUIData>
CastContentBrowserClient::GetNavigationUIData(
content::NavigationHandle* navigation_handle) {
DCHECK(navigation_handle);
content::WebContents* web_contents = navigation_handle->GetWebContents();
DCHECK(web_contents);
std::string session_id =
CastNavigationUIData::GetSessionIdForWebContents(web_contents);
return std::make_unique<CastNavigationUIData>(session_id);
}
scoped_refptr<net::X509Certificate> CastContentBrowserClient::DeviceCert() {
return nullptr;
}
scoped_refptr<net::SSLPrivateKey> CastContentBrowserClient::DeviceKey() {
return nullptr;
}
#if !defined(OS_ANDROID) && !defined(OS_FUCHSIA)
int CastContentBrowserClient::GetCrashSignalFD(
const base::CommandLine& command_line) {
std::string process_type =
command_line.GetSwitchValueASCII(switches::kProcessType);
if (process_type == switches::kRendererProcess ||
process_type == switches::kGpuProcess ||
process_type == switches::kUtilityProcess) {
breakpad::CrashHandlerHostLinux* crash_handler =
crash_handlers_[process_type];
if (!crash_handler) {
crash_handler = CreateCrashHandlerHost(process_type);
crash_handlers_[process_type] = crash_handler;
}
return crash_handler->GetDeathSignalSocket();
}
return -1;
}
breakpad::CrashHandlerHostLinux*
CastContentBrowserClient::CreateCrashHandlerHost(
const std::string& process_type) {
// Let cast shell dump to /tmp. Internal minidump generator code can move it
// to /data/minidumps later, since /data/minidumps is file lock-controlled.
base::FilePath dumps_path;
base::PathService::Get(base::DIR_TEMP, &dumps_path);
// Alway set "upload" to false to use our own uploader.
breakpad::CrashHandlerHostLinux* crash_handler =
new breakpad::CrashHandlerHostLinux(process_type, dumps_path,
false /* upload */);
// StartUploaderThread() even though upload is diferred.
// Breakpad-related memory is freed in the uploader thread.
crash_handler->StartUploaderThread();
return crash_handler;
}
#endif // !defined(OS_ANDROID)
} // namespace shell
} // namespace chromecast