| 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 590 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 601 const char kNotificationsHelpURL[] = | 601 const char kNotificationsHelpURL[] = |
| 602 "https://support.google.com/chrome/?p=ui_notifications"; | 602 "https://support.google.com/chrome/?p=ui_notifications"; |
| 603 #endif | 603 #endif |
| 604 | 604 |
| 605 const char kNotificationWelcomeLearnMoreURL[] = | 605 const char kNotificationWelcomeLearnMoreURL[] = |
| 606 "https://support.google.com/chrome/?p=ib_google_now_welcome"; | 606 "https://support.google.com/chrome/?p=ib_google_now_welcome"; |
| 607 | 607 |
| 608 // Add hosts here to be included in chrome://chrome-urls (about:about). | 608 // Add hosts here to be included in chrome://chrome-urls (about:about). |
| 609 // These hosts will also be suggested by BuiltinProvider. | 609 // These hosts will also be suggested by BuiltinProvider. |
| 610 const char* const kChromeHostURLs[] = { | 610 const char* const kChromeHostURLs[] = { |
| 611 kChromeUIBluetoothInternalsHost, |
| 611 kChromeUICacheHost, | 612 kChromeUICacheHost, |
| 612 kChromeUIChromeURLsHost, | 613 kChromeUIChromeURLsHost, |
| 613 kChromeUIComponentsHost, | 614 kChromeUIComponentsHost, |
| 614 kChromeUICrashesHost, | 615 kChromeUICrashesHost, |
| 615 kChromeUICreditsHost, | 616 kChromeUICreditsHost, |
| 617 kChromeUIDNSHost, |
| 616 kChromeUIDeviceLogHost, | 618 kChromeUIDeviceLogHost, |
| 617 kChromeUIDNSHost, | |
| 618 kChromeUIFlagsHost, | 619 kChromeUIFlagsHost, |
| 619 kChromeUIGCMInternalsHost, | 620 kChromeUIGCMInternalsHost, |
| 620 kChromeUIHistoryHost, | 621 kChromeUIHistoryHost, |
| 621 kChromeUIInvalidationsHost, | 622 kChromeUIInvalidationsHost, |
| 622 kChromeUILocalStateHost, | 623 kChromeUILocalStateHost, |
| 623 kChromeUINetInternalsHost, | 624 kChromeUINetInternalsHost, |
| 624 kChromeUINewTabHost, | 625 kChromeUINewTabHost, |
| 625 kChromeUIOmniboxHost, | 626 kChromeUIOmniboxHost, |
| 626 kChromeUIPasswordManagerInternalsHost, | 627 kChromeUIPasswordManagerInternalsHost, |
| 627 kChromeUIPolicyHost, | 628 kChromeUIPolicyHost, |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 783 "https://support.google.com/chrome?p=bluetooth"; | 784 "https://support.google.com/chrome?p=bluetooth"; |
| 784 | 785 |
| 785 const char kChooserUsbOverviewURL[] = | 786 const char kChooserUsbOverviewURL[] = |
| 786 "https://support.google.com/chrome?p=webusb"; | 787 "https://support.google.com/chrome?p=webusb"; |
| 787 | 788 |
| 788 #if defined(OS_CHROMEOS) | 789 #if defined(OS_CHROMEOS) |
| 789 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; | 790 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; |
| 790 #endif | 791 #endif |
| 791 | 792 |
| 792 } // namespace chrome | 793 } // namespace chrome |
| OLD | NEW |