| Index: chrome/browser/browser_process_platform_part_mac.mm
|
| diff --git a/chrome/browser/browser_process_platform_part_mac.mm b/chrome/browser/browser_process_platform_part_mac.mm
|
| index c83cd5bc48434f2c37c31fab8cfa63fb9cb38768..eb2dea00b1a4d5b22f8fa0468144851308613942 100644
|
| --- a/chrome/browser/browser_process_platform_part_mac.mm
|
| +++ b/chrome/browser/browser_process_platform_part_mac.mm
|
| @@ -4,7 +4,6 @@
|
|
|
| #include "chrome/browser/browser_process_platform_part_mac.h"
|
|
|
| -#include "apps/app_shim/app_shim_host_manager_mac.h"
|
| #include "chrome/browser/chrome_browser_application_mac.h"
|
| #include "chrome/browser/ui/app_list/app_list_service.h"
|
|
|
| @@ -15,7 +14,7 @@ BrowserProcessPlatformPart::~BrowserProcessPlatformPart() {
|
| }
|
|
|
| void BrowserProcessPlatformPart::StartTearDown() {
|
| - app_shim_host_manager_.reset();
|
| + app_shim_host_manager_ = NULL;
|
| }
|
|
|
| void BrowserProcessPlatformPart::AttemptExit() {
|
| @@ -26,7 +25,7 @@ void BrowserProcessPlatformPart::AttemptExit() {
|
| }
|
|
|
| void BrowserProcessPlatformPart::PreMainMessageLoopRun() {
|
| - app_shim_host_manager_.reset(new AppShimHostManager);
|
| + app_shim_host_manager_ = new AppShimHostManager;
|
| AppListService::InitAll(NULL);
|
| }
|
|
|
|
|