Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(363)

Unified Diff: chrome/browser/chromeos/login/help_app_launcher.h

Issue 10254027: chromeos: Rename LoginHtmlDialog to LoginWebDialog. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/chromeos/login/help_app_launcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_;
« no previous file with comments | « no previous file | chrome/browser/chromeos/login/help_app_launcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698