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 <algorithm> | 7 #include <algorithm> |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "content/public/common/url_constants.h" | 10 #include "content/public/common/url_constants.h" |
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
373 #if defined(OS_CHROMEOS) | 373 #if defined(OS_CHROMEOS) |
374 "https://support.google.com/chromebook/?p=settings_password"; | 374 "https://support.google.com/chromebook/?p=settings_password"; |
375 #else | 375 #else |
376 "https://support.google.com/chrome/?p=settings_password"; | 376 "https://support.google.com/chrome/?p=settings_password"; |
377 #endif | 377 #endif |
378 | 378 |
379 const char kUpgradeHelpCenterBaseURL[] = | 379 const char kUpgradeHelpCenterBaseURL[] = |
380 "http://support.google.com/installer/?product=" | 380 "http://support.google.com/installer/?product=" |
381 "{8A69D345-D564-463c-AFF1-A69D9E530F96}&error="; | 381 "{8A69D345-D564-463c-AFF1-A69D9E530F96}&error="; |
382 | 382 |
383 const char kPasswordManagerAccountDashboardURL[] = | |
384 "https://passwords.google.com/settings/passwords"; | |
385 | |
386 const char kSmartLockHelpPage[] = | 383 const char kSmartLockHelpPage[] = |
387 "https://support.google.com/accounts/answer/6197437"; | 384 "https://support.google.com/accounts/answer/6197437"; |
388 | 385 |
389 const char kExtensionControlledSettingLearnMoreURL[] = | 386 const char kExtensionControlledSettingLearnMoreURL[] = |
390 "https://support.google.com/chrome/?p=ui_settings_api_extension"; | 387 "https://support.google.com/chrome/?p=ui_settings_api_extension"; |
391 | 388 |
392 const char kChromeHelpViaKeyboardURL[] = | 389 const char kChromeHelpViaKeyboardURL[] = |
393 #if defined(OS_CHROMEOS) | 390 #if defined(OS_CHROMEOS) |
394 #if defined(OFFICIAL_BUILD) | 391 #if defined(OFFICIAL_BUILD) |
395 "chrome-extension://honijodknafkokifofgiaalefdiedpko/main.html"; | 392 "chrome-extension://honijodknafkokifofgiaalefdiedpko/main.html"; |
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
756 const char kMac10_678_DeprecationURL[] = | 753 const char kMac10_678_DeprecationURL[] = |
757 "http://chrome.blogspot.com/2015/11/updates-to-chrome-platform-support.html"
; | 754 "http://chrome.blogspot.com/2015/11/updates-to-chrome-platform-support.html"
; |
758 #endif | 755 #endif |
759 | 756 |
760 #if defined(OS_WIN) | 757 #if defined(OS_WIN) |
761 const char kWindowsXPVistaDeprecationURL[] = | 758 const char kWindowsXPVistaDeprecationURL[] = |
762 "https://support.google.com/chrome/answer/95346"; | 759 "https://support.google.com/chrome/answer/95346"; |
763 #endif | 760 #endif |
764 | 761 |
765 } // namespace chrome | 762 } // namespace chrome |
OLD | NEW |