| 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 570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 581 | 581 |
| 582 const char kDownloadScanningLearnMoreURL[] = | 582 const char kDownloadScanningLearnMoreURL[] = |
| 583 "https://support.google.com/chrome/?p=ib_download_blocked"; | 583 "https://support.google.com/chrome/?p=ib_download_blocked"; |
| 584 | 584 |
| 585 const char kDownloadInterruptedLearnMoreURL[] = | 585 const char kDownloadInterruptedLearnMoreURL[] = |
| 586 "https://support.google.com/chrome/?p=ui_download_errors"; | 586 "https://support.google.com/chrome/?p=ui_download_errors"; |
| 587 | 587 |
| 588 const char kSyncEverythingLearnMoreURL[] = | 588 const char kSyncEverythingLearnMoreURL[] = |
| 589 "https://support.google.com/chrome/?p=settings_sync_all"; | 589 "https://support.google.com/chrome/?p=settings_sync_all"; |
| 590 | 590 |
| 591 #if defined(OS_CHROMEOS) |
| 592 const char kCrosPrintingLearnMoreURL[] = |
| 593 "https://support.google.com/chromebook?p=chromebook_printing"; |
| 594 #endif |
| 595 |
| 591 const char kCloudPrintLearnMoreURL[] = | 596 const char kCloudPrintLearnMoreURL[] = |
| 592 #if defined(OS_CHROMEOS) | 597 #if defined(OS_CHROMEOS) |
| 593 "https://support.google.com/chromebook/?p=settings_cloud_print"; | 598 "https://support.google.com/chromebook/?p=settings_cloud_print"; |
| 594 #else | 599 #else |
| 595 "https://support.google.com/chrome/?p=settings_cloud_print"; | 600 "https://support.google.com/chrome/?p=settings_cloud_print"; |
| 596 #endif | 601 #endif |
| 597 | 602 |
| 598 const char kCloudPrintNoDestinationsLearnMoreURL[] = | 603 const char kCloudPrintNoDestinationsLearnMoreURL[] = |
| 599 "https://www.google.com/cloudprint/learn/"; | 604 "https://www.google.com/cloudprint/learn/"; |
| 600 | 605 |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 828 #endif | 833 #endif |
| 829 | 834 |
| 830 const char kChooserUsbOverviewURL[] = | 835 const char kChooserUsbOverviewURL[] = |
| 831 "https://support.google.com/chrome?p=webusb"; | 836 "https://support.google.com/chrome?p=webusb"; |
| 832 | 837 |
| 833 #if defined(OS_CHROMEOS) | 838 #if defined(OS_CHROMEOS) |
| 834 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; | 839 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; |
| 835 #endif | 840 #endif |
| 836 | 841 |
| 837 } // namespace chrome | 842 } // namespace chrome |
| OLD | NEW |