| Index: apps/shell/app/shell_main_delegate.cc
|
| diff --git a/apps/shell/app/shell_main_delegate.cc b/apps/shell/app/shell_main_delegate.cc
|
| index 13706cda47a78edcf9960e4953b1c0c3a6a0e880..9912e2fdb0fc26c8149154fc7bd96adc0ff4e5b0 100644
|
| --- a/apps/shell/app/shell_main_delegate.cc
|
| +++ b/apps/shell/app/shell_main_delegate.cc
|
| @@ -38,7 +38,10 @@ void InitLogging() {
|
|
|
| namespace apps {
|
|
|
| -ShellMainDelegate::ShellMainDelegate() {
|
| +ShellMainDelegate::ShellMainDelegate(
|
| + ShellBrowserMainDelegate* browser_main_delegate) {
|
| + browser_client_.reset(
|
| + new apps::ShellContentBrowserClient(browser_main_delegate));
|
| }
|
|
|
| ShellMainDelegate::~ShellMainDelegate() {
|
| @@ -65,7 +68,6 @@ void ShellMainDelegate::PreSandboxStartup() {
|
| }
|
|
|
| content::ContentBrowserClient* ShellMainDelegate::CreateContentBrowserClient() {
|
| - browser_client_.reset(new apps::ShellContentBrowserClient);
|
| return browser_client_.get();
|
| }
|
|
|
|
|