| Index: chrome/browser/extensions/api/identity/web_auth_flow.h
|
| diff --git a/chrome/browser/extensions/api/identity/web_auth_flow.h b/chrome/browser/extensions/api/identity/web_auth_flow.h
|
| index 0067c0ec2cf377ea18e1a83ba2d7adf2ceade560..122547241e16775ad3eabe02cbbd7a74295b11a5 100644
|
| --- a/chrome/browser/extensions/api/identity/web_auth_flow.h
|
| +++ b/chrome/browser/extensions/api/identity/web_auth_flow.h
|
| @@ -7,10 +7,10 @@
|
|
|
| #include <string>
|
|
|
| -#include "apps/app_window_registry.h"
|
| #include "content/public/browser/notification_observer.h"
|
| #include "content/public/browser/notification_registrar.h"
|
| #include "content/public/browser/web_contents_observer.h"
|
| +#include "extensions/browser/app_window/app_window_registry.h"
|
| #include "ui/gfx/rect.h"
|
| #include "url/gurl.h"
|
|
|
| @@ -45,7 +45,7 @@ namespace extensions {
|
| // a window. If a window would be required, the flow fails.
|
| class WebAuthFlow : public content::NotificationObserver,
|
| public content::WebContentsObserver,
|
| - public apps::AppWindowRegistry::Observer {
|
| + public AppWindowRegistry::Observer {
|
| public:
|
| enum Mode {
|
| INTERACTIVE, // Show UI to the user if necessary.
|
| @@ -92,8 +92,8 @@ class WebAuthFlow : public content::NotificationObserver,
|
| friend class ::WebAuthFlowTest;
|
|
|
| // ::AppWindowRegistry::Observer implementation.
|
| - virtual void OnAppWindowAdded(apps::AppWindow* app_window) OVERRIDE;
|
| - virtual void OnAppWindowRemoved(apps::AppWindow* app_window) OVERRIDE;
|
| + virtual void OnAppWindowAdded(AppWindow* app_window) OVERRIDE;
|
| + virtual void OnAppWindowRemoved(AppWindow* app_window) OVERRIDE;
|
|
|
| // NotificationObserver implementation.
|
| virtual void Observe(int type,
|
| @@ -126,7 +126,7 @@ class WebAuthFlow : public content::NotificationObserver,
|
| GURL provider_url_;
|
| Mode mode_;
|
|
|
| - apps::AppWindow* app_window_;
|
| + AppWindow* app_window_;
|
| std::string app_window_key_;
|
| bool embedded_window_created_;
|
|
|
|
|