| 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 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 359 const char kSyncGoogleDashboardURL[] = | 359 const char kSyncGoogleDashboardURL[] = |
| 360 "https://www.google.com/settings/chrome/sync/"; | 360 "https://www.google.com/settings/chrome/sync/"; |
| 361 | 361 |
| 362 const char kPasswordManagerLearnMoreURL[] = | 362 const char kPasswordManagerLearnMoreURL[] = |
| 363 #if defined(OS_CHROMEOS) | 363 #if defined(OS_CHROMEOS) |
| 364 "https://support.google.com/chromebook/?p=settings_password"; | 364 "https://support.google.com/chromebook/?p=settings_password"; |
| 365 #else | 365 #else |
| 366 "https://support.google.com/chrome/?p=settings_password"; | 366 "https://support.google.com/chrome/?p=settings_password"; |
| 367 #endif | 367 #endif |
| 368 | 368 |
| 369 const char kUpgradeHelpCenterBaseURL[] = |
| 370 "http://support.google.com/installer/?product={8A69D345-D564-463c-AFF1-A69D9
E530F96}&error="; |
| 371 |
| 369 const char kPasswordManagerAccountDashboardURL[] = | 372 const char kPasswordManagerAccountDashboardURL[] = |
| 370 "https://passwords.google.com/settings/passwords"; | 373 "https://passwords.google.com/settings/passwords"; |
| 371 | 374 |
| 372 const char kExtensionControlledSettingLearnMoreURL[] = | 375 const char kExtensionControlledSettingLearnMoreURL[] = |
| 373 "https://support.google.com/chrome/?p=ui_settings_api_extension"; | 376 "https://support.google.com/chrome/?p=ui_settings_api_extension"; |
| 374 | 377 |
| 375 const char kChromeHelpViaKeyboardURL[] = | 378 const char kChromeHelpViaKeyboardURL[] = |
| 376 #if defined(OS_CHROMEOS) | 379 #if defined(OS_CHROMEOS) |
| 377 #if defined(OFFICIAL_BUILD) | 380 #if defined(OFFICIAL_BUILD) |
| 378 "chrome-extension://honijodknafkokifofgiaalefdiedpko/main.html"; | 381 "chrome-extension://honijodknafkokifofgiaalefdiedpko/main.html"; |
| (...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 730 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; | 733 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; |
| 731 #else | 734 #else |
| 732 ""; | 735 ""; |
| 733 #endif | 736 #endif |
| 734 #endif | 737 #endif |
| 735 | 738 |
| 736 const char kEasyUnlockLearnMoreUrl[] = | 739 const char kEasyUnlockLearnMoreUrl[] = |
| 737 "https://support.google.com/chromebook/?p=smart_lock"; | 740 "https://support.google.com/chromebook/?p=smart_lock"; |
| 738 | 741 |
| 739 } // namespace chrome | 742 } // namespace chrome |
| OLD | NEW |