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

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

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
Index: chrome/browser/chromeos/login/help_app_launcher.cc
diff --git a/chrome/browser/chromeos/login/help_app_launcher.cc b/chrome/browser/chromeos/login/help_app_launcher.cc
index 0184147723d75dd854a1a4e8b8c2aa30d15ebcc6..a201306cb1e2e4c2dd4be4c56ab2aee0189aab2b 100644
--- a/chrome/browser/chromeos/login/help_app_launcher.cc
+++ b/chrome/browser/chromeos/login/help_app_launcher.cc
@@ -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.
@@ -55,13 +55,13 @@ void HelpAppLauncher::ShowHelpTopic(HelpTopic help_topic_id) {
void HelpAppLauncher::ShowHelpTopicDialog(const GURL& topic_url) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
- dialog_.reset(new LoginHtmlDialog(
+ dialog_.reset(new LoginWebDialog(
this,
parent_window_,
UTF16ToWide(
l10n_util::GetStringUTF16(IDS_LOGIN_OOBE_HELP_DIALOG_TITLE)),
topic_url,
- LoginHtmlDialog::STYLE_BUBBLE));
+ LoginWebDialog::STYLE_BUBBLE));
dialog_->Show();
}
« no previous file with comments | « chrome/browser/chromeos/login/help_app_launcher.h ('k') | chrome/browser/chromeos/login/login_html_dialog.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698