| Index: chrome/browser/chromeos/login/demo_mode/demo_app_launcher_browsertest.cc
|
| diff --git a/chrome/browser/chromeos/login/demo_mode/demo_app_launcher_browsertest.cc b/chrome/browser/chromeos/login/demo_mode/demo_app_launcher_browsertest.cc
|
| index c65f0cf732f5ac697a0fb15d3c14029b90069b0f..9e5b88a4be5f65e606254cb96dceb6409cfd6b09 100644
|
| --- a/chrome/browser/chromeos/login/demo_mode/demo_app_launcher_browsertest.cc
|
| +++ b/chrome/browser/chromeos/login/demo_mode/demo_app_launcher_browsertest.cc
|
| @@ -2,7 +2,6 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "apps/app_window_registry.h"
|
| #include "base/basictypes.h"
|
| #include "base/command_line.h"
|
| #include "base/compiler_specific.h"
|
| @@ -22,6 +21,7 @@
|
| #include "content/public/browser/notification_service.h"
|
| #include "content/public/browser/notification_source.h"
|
| #include "content/public/test/test_utils.h"
|
| +#include "extensions/browser/app_window/app_window_registry.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| namespace chromeos {
|
| @@ -47,7 +47,7 @@ Profile* WaitForProfile() {
|
|
|
| bool VerifyDemoAppLaunch() {
|
| Profile* profile = WaitForProfile();
|
| - return AppWindowWaiter(apps::AppWindowRegistry::Get(profile),
|
| + return AppWindowWaiter(extensions::AppWindowRegistry::Get(profile),
|
| DemoAppLauncher::kDemoAppId).Wait() != NULL;
|
| }
|
|
|
|
|