| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "android_webview/browser/aw_content_browser_client.h" | 5 #include "android_webview/browser/aw_content_browser_client.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "android_webview/browser/aw_browser_context.h" | 9 #include "android_webview/browser/aw_browser_context.h" |
| 10 #include "android_webview/browser/aw_browser_main_parts.h" | 10 #include "android_webview/browser/aw_browser_main_parts.h" |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 #include "android_webview/common/aw_switches.h" | 24 #include "android_webview/common/aw_switches.h" |
| 25 #include "android_webview/common/render_view_messages.h" | 25 #include "android_webview/common/render_view_messages.h" |
| 26 #include "android_webview/common/url_constants.h" | 26 #include "android_webview/common/url_constants.h" |
| 27 #include "base/android/locale_utils.h" | 27 #include "base/android/locale_utils.h" |
| 28 #include "base/base_paths_android.h" | 28 #include "base/base_paths_android.h" |
| 29 #include "base/command_line.h" | 29 #include "base/command_line.h" |
| 30 #include "base/files/scoped_file.h" | 30 #include "base/files/scoped_file.h" |
| 31 #include "base/memory/ptr_util.h" | 31 #include "base/memory/ptr_util.h" |
| 32 #include "base/path_service.h" | 32 #include "base/path_service.h" |
| 33 #include "components/cdm/browser/cdm_message_filter_android.h" | 33 #include "components/cdm/browser/cdm_message_filter_android.h" |
| 34 #include "components/crash/content/browser/crash_dump_observer_android.h" | 34 #include "components/crash/content/browser/crash_micro_dump_manager_android.h" |
| 35 #include "components/navigation_interception/intercept_navigation_delegate.h" | 35 #include "components/navigation_interception/intercept_navigation_delegate.h" |
| 36 #include "content/public/browser/browser_message_filter.h" | 36 #include "content/public/browser/browser_message_filter.h" |
| 37 #include "content/public/browser/browser_thread.h" | 37 #include "content/public/browser/browser_thread.h" |
| 38 #include "content/public/browser/child_process_security_policy.h" | 38 #include "content/public/browser/child_process_security_policy.h" |
| 39 #include "content/public/browser/client_certificate_delegate.h" | 39 #include "content/public/browser/client_certificate_delegate.h" |
| 40 #include "content/public/browser/navigation_handle.h" | 40 #include "content/public/browser/navigation_handle.h" |
| 41 #include "content/public/browser/navigation_throttle.h" | 41 #include "content/public/browser/navigation_throttle.h" |
| 42 #include "content/public/browser/render_frame_host.h" | 42 #include "content/public/browser/render_frame_host.h" |
| 43 #include "content/public/browser/render_process_host.h" | 43 #include "content/public/browser/render_process_host.h" |
| 44 #include "content/public/browser/render_view_host.h" | 44 #include "content/public/browser/render_view_host.h" |
| (...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 479 int child_process_id, | 479 int child_process_id, |
| 480 content::FileDescriptorInfo* mappings, | 480 content::FileDescriptorInfo* mappings, |
| 481 std::map<int, base::MemoryMappedFile::Region>* regions) { | 481 std::map<int, base::MemoryMappedFile::Region>* regions) { |
| 482 int fd = ui::GetMainAndroidPackFd( | 482 int fd = ui::GetMainAndroidPackFd( |
| 483 &(*regions)[kAndroidWebViewMainPakDescriptor]); | 483 &(*regions)[kAndroidWebViewMainPakDescriptor]); |
| 484 mappings->Share(kAndroidWebViewMainPakDescriptor, fd); | 484 mappings->Share(kAndroidWebViewMainPakDescriptor, fd); |
| 485 | 485 |
| 486 fd = ui::GetLocalePackFd(&(*regions)[kAndroidWebViewLocalePakDescriptor]); | 486 fd = ui::GetLocalePackFd(&(*regions)[kAndroidWebViewLocalePakDescriptor]); |
| 487 mappings->Share(kAndroidWebViewLocalePakDescriptor, fd); | 487 mappings->Share(kAndroidWebViewLocalePakDescriptor, fd); |
| 488 | 488 |
| 489 breakpad::CrashDumpObserver::GetInstance()->BrowserChildProcessStarted( | 489 base::ScopedFD crash_signal_file = |
| 490 child_process_id, mappings); | 490 breakpad::CrashMicroDumpManager::GetInstance()->CreateCrashInfoChannel( |
| 491 child_process_id); |
| 492 if (crash_signal_file.is_valid()) { |
| 493 mappings->Transfer(kAndroidWebViewCrashSignalDescriptor, |
| 494 std::move(crash_signal_file)); |
| 495 } |
| 491 } | 496 } |
| 492 | 497 |
| 493 void AwContentBrowserClient::OverrideWebkitPrefs( | 498 void AwContentBrowserClient::OverrideWebkitPrefs( |
| 494 content::RenderViewHost* rvh, | 499 content::RenderViewHost* rvh, |
| 495 content::WebPreferences* web_prefs) { | 500 content::WebPreferences* web_prefs) { |
| 496 if (!preferences_populater_.get()) { | 501 if (!preferences_populater_.get()) { |
| 497 preferences_populater_ = | 502 preferences_populater_ = |
| 498 base::WrapUnique(native_factory_->CreateWebPreferencesPopulater()); | 503 base::WrapUnique(native_factory_->CreateWebPreferencesPopulater()); |
| 499 } | 504 } |
| 500 preferences_populater_->PopulateFor( | 505 preferences_populater_->PopulateFor( |
| (...skipping 17 matching lines...) Expand all Loading... |
| 518 | 523 |
| 519 #if defined(VIDEO_HOLE) | 524 #if defined(VIDEO_HOLE) |
| 520 content::ExternalVideoSurfaceContainer* | 525 content::ExternalVideoSurfaceContainer* |
| 521 AwContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer( | 526 AwContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer( |
| 522 content::WebContents* web_contents) { | 527 content::WebContents* web_contents) { |
| 523 return native_factory_->CreateExternalVideoSurfaceContainer(web_contents); | 528 return native_factory_->CreateExternalVideoSurfaceContainer(web_contents); |
| 524 } | 529 } |
| 525 #endif | 530 #endif |
| 526 | 531 |
| 527 } // namespace android_webview | 532 } // namespace android_webview |
| OLD | NEW |