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

Side by Side Diff: chrome/common/url_constants.cc

Issue 9618037: Help: Hook up the 'Get help' button. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix typo. Created 8 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/ui/webui/help/help_handler.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/common/url_constants.h" 5 #include "chrome/common/url_constants.h"
6 6
7 #include "googleurl/src/url_util.h" 7 #include "googleurl/src/url_util.h"
8 8
9 namespace { 9 namespace {
10 const char* kSavableSchemes[] = { 10 const char* kSavableSchemes[] = {
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 "https://support.google.com/chromeos/?p=settings_password"; 272 "https://support.google.com/chromeos/?p=settings_password";
273 #else 273 #else
274 "https://support.google.com/chrome/?p=settings_password"; 274 "https://support.google.com/chrome/?p=settings_password";
275 #endif 275 #endif
276 276
277 const char kChromeHelpURL[] = 277 const char kChromeHelpURL[] =
278 #if defined(OS_CHROMEOS) 278 #if defined(OS_CHROMEOS)
279 #if defined(OFFICIAL_BUILD) 279 #if defined(OFFICIAL_BUILD)
280 "chrome-extension://honijodknafkokifofgiaalefdiedpko/main.html"; 280 "chrome-extension://honijodknafkokifofgiaalefdiedpko/main.html";
281 #else 281 #else
282 "https://support.google.com/chromeos/?p=wrench"; 282 "https://support.google.com/chromeos/?p=help";
283 #endif // defined(OFFICIAL_BUILD 283 #endif // defined(OFFICIAL_BUILD
284 #else 284 #else
285 "https://support.google.com/chrome/?p=wrench"; 285 "https://support.google.com/chrome/?p=help";
286 #endif 286 #endif
287 287
288 const char kSettingsSearchHelpURL[] = 288 const char kSettingsSearchHelpURL[] =
289 #if defined(OS_CHROMEOS) 289 #if defined(OS_CHROMEOS)
290 "https://support.google.com/chromeos/?p=settings_search_help"; 290 "https://support.google.com/chromeos/?p=settings_search_help";
291 #else 291 #else
292 "https://support.google.com/chrome/?p=settings_search_help"; 292 "https://support.google.com/chrome/?p=settings_search_help";
293 #endif 293 #endif
294 294
295 const char kAboutGoogleTranslateURL[] = 295 const char kAboutGoogleTranslateURL[] =
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
417 url_util::AddStandardScheme(kExtensionScheme); 417 url_util::AddStandardScheme(kExtensionScheme);
418 #if defined(OS_CHROMEOS) 418 #if defined(OS_CHROMEOS)
419 url_util::AddStandardScheme(kCrosScheme); 419 url_util::AddStandardScheme(kCrosScheme);
420 #endif 420 #endif
421 421
422 // This call will also lock the list of standard schemes. 422 // This call will also lock the list of standard schemes.
423 RegisterContentSchemes(kSavableSchemes); 423 RegisterContentSchemes(kSavableSchemes);
424 } 424 }
425 425
426 } // namespace chrome 426 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/help/help_handler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698