| 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/macros.h" | 9 #include "base/macros.h" |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 551 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 562 const char kCloudPrintLearnMoreURL[] = | 562 const char kCloudPrintLearnMoreURL[] = |
| 563 #if defined(OS_CHROMEOS) | 563 #if defined(OS_CHROMEOS) |
| 564 "https://support.google.com/chromebook/?p=settings_cloud_print"; | 564 "https://support.google.com/chromebook/?p=settings_cloud_print"; |
| 565 #else | 565 #else |
| 566 "https://support.google.com/chrome/?p=settings_cloud_print"; | 566 "https://support.google.com/chrome/?p=settings_cloud_print"; |
| 567 #endif | 567 #endif |
| 568 | 568 |
| 569 const char kCloudPrintNoDestinationsLearnMoreURL[] = | 569 const char kCloudPrintNoDestinationsLearnMoreURL[] = |
| 570 "https://www.google.com/cloudprint/learn/"; | 570 "https://www.google.com/cloudprint/learn/"; |
| 571 | 571 |
| 572 const char kAppLauncherHelpURL[] = | |
| 573 "https://support.google.com/chrome_webstore/?p=cws_app_launcher"; | |
| 574 | |
| 575 const char kSyncEncryptionHelpURL[] = | 572 const char kSyncEncryptionHelpURL[] = |
| 576 #if defined(OS_CHROMEOS) | 573 #if defined(OS_CHROMEOS) |
| 577 "https://support.google.com/chromebook/?p=settings_encryption"; | 574 "https://support.google.com/chromebook/?p=settings_encryption"; |
| 578 #else | 575 #else |
| 579 "https://support.google.com/chrome/?p=settings_encryption"; | 576 "https://support.google.com/chrome/?p=settings_encryption"; |
| 580 #endif | 577 #endif |
| 581 | 578 |
| 582 const char kSyncErrorsHelpURL[] = | 579 const char kSyncErrorsHelpURL[] = |
| 583 "https://support.google.com/chrome/?p=settings_sync_error"; | 580 "https://support.google.com/chrome/?p=settings_sync_error"; |
| 584 | 581 |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 780 "https://support.google.com/chrome?p=bluetooth"; | 777 "https://support.google.com/chrome?p=bluetooth"; |
| 781 | 778 |
| 782 const char kChooserUsbOverviewURL[] = | 779 const char kChooserUsbOverviewURL[] = |
| 783 "https://support.google.com/chrome?p=webusb"; | 780 "https://support.google.com/chrome?p=webusb"; |
| 784 | 781 |
| 785 #if defined(OS_CHROMEOS) | 782 #if defined(OS_CHROMEOS) |
| 786 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; | 783 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; |
| 787 #endif | 784 #endif |
| 788 | 785 |
| 789 } // namespace chrome | 786 } // namespace chrome |
| OLD | NEW |