Index: content/shell/app/shell_main_delegate.cc |
diff --git a/content/shell/app/shell_main_delegate.cc b/content/shell/app/shell_main_delegate.cc |
index 63f3f298bac2eced5055193bc41ad6b38e10daaf..1e77b2050fd457cca90a9e619f0f73031ee0c86b 100644 |
--- a/content/shell/app/shell_main_delegate.cc |
+++ b/content/shell/app/shell_main_delegate.cc |
@@ -291,6 +291,7 @@ void ShellMainDelegate::ZygoteForked() { |
void ShellMainDelegate::InitializeResourceBundle() { |
#if defined(OS_ANDROID) |
+ LOG(ERROR) << "ShellMainDelegate::InitializeResourceBundle()"; |
// On Android, the renderer runs with a different UID and can never access |
// the file system. Use the file descriptor passed in at launch time. |
auto* global_descriptors = base::GlobalDescriptors::GetInstance(); |
@@ -315,6 +316,7 @@ void ShellMainDelegate::InitializeResourceBundle() { |
global_descriptors->Set(kShellPakDescriptor, pak_fd, pak_region); |
} |
DCHECK_GE(pak_fd, 0); |
+ LOG(ERROR) << "ShellMainDelegate::InitializeResourceBundle() - crash now?"; |
// This is clearly wrong. See crbug.com/330930 |
ui::ResourceBundle::InitSharedInstanceWithPakFileRegion(base::File(pak_fd), |
pak_region); |