| Index: chrome/browser/chromeos/login/help_app_launcher.h
|
| diff --git a/chrome/browser/chromeos/login/help_app_launcher.h b/chrome/browser/chromeos/login/help_app_launcher.h
|
| index 5ab8b76eb0efbe524f75c2baf67fc953ef513b38..fddcb76583e1825040758ce132469f449f4d19e7 100644
|
| --- a/chrome/browser/chromeos/login/help_app_launcher.h
|
| +++ b/chrome/browser/chromeos/login/help_app_launcher.h
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| @@ -9,7 +9,7 @@
|
| #include "base/compiler_specific.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/memory/scoped_ptr.h"
|
| -#include "chrome/browser/chromeos/login/login_html_dialog.h"
|
| +#include "chrome/browser/chromeos/login/login_web_dialog.h"
|
| #include "ui/gfx/native_widget_types.h"
|
|
|
| namespace chromeos {
|
| @@ -17,7 +17,7 @@ namespace chromeos {
|
| // Provides help content during OOBE / login.
|
| // Based on connectivity state (offline/online) shows help topic dialog
|
| // or launches HelpApp in BWSI mode.
|
| -class HelpAppLauncher : public LoginHtmlDialog::Delegate,
|
| +class HelpAppLauncher : public LoginWebDialog::Delegate,
|
| public base::RefCountedThreadSafe<HelpAppLauncher> {
|
| public:
|
| // IDs of help topics available from HelpApp.
|
| @@ -47,7 +47,7 @@ class HelpAppLauncher : public LoginHtmlDialog::Delegate,
|
| bool is_open() const { return dialog_.get() && dialog_->is_open(); }
|
|
|
| protected:
|
| - // LoginHtmlDialog::Delegate implementation:
|
| + // LoginWebDialog::Delegate implementation:
|
| virtual void OnDialogClosed() OVERRIDE {}
|
|
|
| private:
|
| @@ -55,7 +55,7 @@ class HelpAppLauncher : public LoginHtmlDialog::Delegate,
|
| void ShowHelpTopicDialog(const GURL& topic_url);
|
|
|
| // Dialog used to display help like "Can't access your account".
|
| - scoped_ptr<LoginHtmlDialog> dialog_;
|
| + scoped_ptr<LoginWebDialog> dialog_;
|
|
|
| // Parent window which is passed to help dialog.
|
| gfx::NativeWindow parent_window_;
|
|
|