| 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 581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 592 #else | 592 #else |
| 593 "https://support.google.com/chrome/?p=settings_encryption"; | 593 "https://support.google.com/chrome/?p=settings_encryption"; |
| 594 #endif | 594 #endif |
| 595 | 595 |
| 596 const char kSyncErrorsHelpURL[] = | 596 const char kSyncErrorsHelpURL[] = |
| 597 "https://support.google.com/chrome/?p=settings_sync_error"; | 597 "https://support.google.com/chrome/?p=settings_sync_error"; |
| 598 | 598 |
| 599 #if defined(OS_CHROMEOS) | 599 #if defined(OS_CHROMEOS) |
| 600 const char kNaturalScrollHelpURL[] = | 600 const char kNaturalScrollHelpURL[] = |
| 601 "https://support.google.com/chromebook/?p=simple_scrolling"; | 601 "https://support.google.com/chromebook/?p=simple_scrolling"; |
| 602 #endif | |
| 603 | |
| 604 #if defined(OS_CHROMEOS) | |
| 605 const char kLearnMoreEnterpriseURL[] = | 602 const char kLearnMoreEnterpriseURL[] = |
| 606 "https://support.google.com/chromebook/?p=managed"; | 603 "https://support.google.com/chromebook/?p=managed"; |
| 604 const char kAndroidAppsLearnMoreURL[] = |
| 605 "https://support.google.com/chromebook/?p=playapps"; |
| 607 #endif | 606 #endif |
| 608 | 607 |
| 609 const char kRemoveNonCWSExtensionURL[] = | 608 const char kRemoveNonCWSExtensionURL[] = |
| 610 "https://support.google.com/chrome/?p=ui_remove_non_cws_extensions"; | 609 "https://support.google.com/chrome/?p=ui_remove_non_cws_extensions"; |
| 611 | 610 |
| 612 #if defined(OS_WIN) | 611 #if defined(OS_WIN) |
| 613 const char kNotificationsHelpURL[] = | 612 const char kNotificationsHelpURL[] = |
| 614 "https://support.google.com/chrome/?p=ui_notifications"; | 613 "https://support.google.com/chrome/?p=ui_notifications"; |
| 615 #endif | 614 #endif |
| 616 | 615 |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 811 #endif | 810 #endif |
| 812 | 811 |
| 813 const char kChooserUsbOverviewURL[] = | 812 const char kChooserUsbOverviewURL[] = |
| 814 "https://support.google.com/chrome?p=webusb"; | 813 "https://support.google.com/chrome?p=webusb"; |
| 815 | 814 |
| 816 #if defined(OS_CHROMEOS) | 815 #if defined(OS_CHROMEOS) |
| 817 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; | 816 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; |
| 818 #endif | 817 #endif |
| 819 | 818 |
| 820 } // namespace chrome | 819 } // namespace chrome |
| OLD | NEW |