| Index: chrome/browser/extensions/window_open_apitest.cc
|
| diff --git a/chrome/browser/extensions/window_open_apitest.cc b/chrome/browser/extensions/window_open_apitest.cc
|
| index 39bd65328d5524782cd0abfb0a1ccdf279cbadd6..957103db24ee6131b0c1bde88e4d3ab2bdb3decc 100644
|
| --- a/chrome/browser/extensions/window_open_apitest.cc
|
| +++ b/chrome/browser/extensions/window_open_apitest.cc
|
| @@ -32,7 +32,7 @@
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| #if defined(USE_ASH)
|
| -#include "apps/shell_window_registry.h"
|
| +#include "apps/app_window_registry.h"
|
| #endif
|
|
|
| #if defined(USE_ASH) && !defined(OS_WIN)
|
| @@ -57,8 +57,8 @@ IN_PROC_BROWSER_TEST_F(ExtensionApiTest, DISABLED_WindowOpen) {
|
|
|
| int GetPanelCount(Browser* browser) {
|
| #if defined(USE_ASH_PANELS)
|
| - return static_cast<int>(apps::ShellWindowRegistry::Get(
|
| - browser->profile())->shell_windows().size());
|
| + return static_cast<int>(
|
| + apps::AppWindowRegistry::Get(browser->profile())->app_windows().size());
|
| #else
|
| return PanelManager::GetInstance()->num_panels();
|
| #endif
|
|
|