| 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 fb0432013d6bffe62baa395154da32b75178b676..7cb53cb31a5556c405026db2a3a0daa684249f19 100644
|
| --- a/content/shell/app/shell_main_delegate.cc
|
| +++ b/content/shell/app/shell_main_delegate.cc
|
| @@ -210,6 +210,7 @@ bool ShellMainDelegate::BasicStartupComplete(int* exit_code) {
|
| }
|
|
|
| void ShellMainDelegate::PreSandboxStartup() {
|
| + LOG(ERROR) << "auraclank: ShellMainDelegate::PreSandboxStartup";
|
| #if defined(ARCH_CPU_ARM_FAMILY) && (defined(OS_ANDROID) || defined(OS_LINUX))
|
| // Create an instance of the CPU class to parse /proc/cpuinfo and cache
|
| // cpu_brand info.
|
| @@ -286,6 +287,7 @@ void ShellMainDelegate::ZygoteForked() {
|
|
|
| void ShellMainDelegate::InitializeResourceBundle() {
|
| #if defined(OS_ANDROID)
|
| + LOG(ERROR) << "auraclank: 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();
|
| @@ -310,6 +312,7 @@ void ShellMainDelegate::InitializeResourceBundle() {
|
| global_descriptors->Set(kShellPakDescriptor, pak_fd, pak_region);
|
| }
|
| DCHECK_GE(pak_fd, 0);
|
| + LOG(ERROR) << "auraclank: ShellMainDelegate::InitializeResourceBundle() - crash now?";
|
| // This is clearly wrong. See crbug.com/330930
|
| ui::ResourceBundle::InitSharedInstanceWithPakFileRegion(base::File(pak_fd),
|
| pak_region);
|
|
|