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

Unified Diff: chrome/browser/ui/browser.cc

Issue 6245010: Use HelpApp in guest mode (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 11 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/browser.cc
diff --git a/chrome/browser/ui/browser.cc b/chrome/browser/ui/browser.cc
index 7352f9231ea69766a05d89f67e6d4e024682908e..c9a78603812ea07ee13b9cbfe71d4a81c03067e2 100644
--- a/chrome/browser/ui/browser.cc
+++ b/chrome/browser/ui/browser.cc
@@ -142,8 +142,6 @@ namespace {
#if defined(OS_CHROMEOS)
const char kHelpContentUrl[] =
"chrome-extension://honijodknafkokifofgiaalefdiedpko/main.html";
-const char kHelpContentOnlineUrl[] =
- "http://www.google.com/support/chromeos/";
#else
const char kHelpContentUrl[] =
"http://www.google.com/support/chrome/";
@@ -1862,11 +1860,6 @@ void Browser::OpenUpdateChromeDialog() {
void Browser::OpenHelpTab() {
GURL help_url(kHelpContentUrl);
-#if defined(OS_CHROMEOS)
- // TODO(nkostylev): Always redirect to HelpApp http://crosbug.com/6923
- if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kGuestSession))
- help_url = GURL(kHelpContentOnlineUrl);
-#endif
GURL localized_help_url = google_util::AppendGoogleLocaleParam(help_url);
AddSelectedTabWithURL(localized_help_url, PageTransition::AUTO_BOOKMARK);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698