| Index: apps/app_shim/app_shim_handler_mac.cc
|
| diff --git a/apps/app_shim/app_shim_handler_mac.cc b/apps/app_shim/app_shim_handler_mac.cc
|
| index 3153bd4c591dbe02b56bb6dda1068e355fa4a45e..ffd1bc68702e53fdd82180f110cbf92bf9437120 100644
|
| --- a/apps/app_shim/app_shim_handler_mac.cc
|
| +++ b/apps/app_shim/app_shim_handler_mac.cc
|
| @@ -6,6 +6,7 @@
|
|
|
| #include <map>
|
|
|
| +#include "apps/app_window_registry_util.h"
|
| #include "base/bind.h"
|
| #include "base/logging.h"
|
| #include "base/memory/singleton.h"
|
| @@ -16,7 +17,6 @@
|
| #include "content/public/browser/notification_observer.h"
|
| #include "content/public/browser/notification_registrar.h"
|
| #include "content/public/browser/notification_service.h"
|
| -#include "extensions/browser/app_window/app_window_registry.h"
|
|
|
| namespace apps {
|
|
|
| @@ -24,7 +24,7 @@ namespace {
|
|
|
| void TerminateIfNoAppWindows() {
|
| bool app_windows_left =
|
| - extensions::AppWindowRegistry::IsAppWindowRegisteredInAnyProfile(0);
|
| + apps::AppWindowRegistryUtil::IsAppWindowRegisteredInAnyProfile(0);
|
| if (!app_windows_left &&
|
| !AppListService::Get(chrome::HOST_DESKTOP_TYPE_NATIVE)
|
| ->IsAppListVisible()) {
|
|
|