OLD | NEW |
---|---|
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 Loading... | |
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"; |
csilv
2012/03/07 19:13:44
remove extra &
James Hawkins
2012/03/08 17:49:40
Done.
| |
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 Loading... | |
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 |
OLD | NEW |