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

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

Issue 6273014: Show online help for nonofficial build where HelpApp is missing (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 128109460a18fc922358c774592a6abeb164697a..461e2a6cd584c8322c76a5445f7eef3d4398df6f 100644
--- a/chrome/browser/ui/browser.cc
+++ b/chrome/browser/ui/browser.cc
@@ -139,11 +139,14 @@ using base::TimeDelta;
namespace {
// The URL to be loaded to display Help.
-#if defined(OS_CHROMEOS)
const char kHelpContentUrl[] =
- "chrome-extension://honijodknafkokifofgiaalefdiedpko/main.html";
+#if defined(OS_CHROMEOS)
+ #if defined(OFFICIAL_BUILD)
+ "chrome-extension://honijodknafkokifofgiaalefdiedpko/main.html";
+ #else
+ "http://www.google.com/support/chromeos/";
+ #endif
#else
-const char kHelpContentUrl[] =
"http://www.google.com/support/chrome/";
#endif
« 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