| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 const char kChromeUIGCMInternalsURL[] = "chrome://gcm-internals/"; | 59 const char kChromeUIGCMInternalsURL[] = "chrome://gcm-internals/"; |
| 60 const char kChromeUIHelpFrameURL[] = "chrome://help-frame/"; | 60 const char kChromeUIHelpFrameURL[] = "chrome://help-frame/"; |
| 61 const char kChromeUIHelpURL[] = "chrome://help/"; | 61 const char kChromeUIHelpURL[] = "chrome://help/"; |
| 62 const char kChromeUIHistoryURL[] = "chrome://history/"; | 62 const char kChromeUIHistoryURL[] = "chrome://history/"; |
| 63 const char kDeprecatedChromeUIHistoryFrameURL[] = "chrome://history-frame/"; | 63 const char kDeprecatedChromeUIHistoryFrameURL[] = "chrome://history-frame/"; |
| 64 const char kChromeUIIdentityInternalsURL[] = "chrome://identity-internals/"; | 64 const char kChromeUIIdentityInternalsURL[] = "chrome://identity-internals/"; |
| 65 const char kChromeUIInspectURL[] = "chrome://inspect/"; | 65 const char kChromeUIInspectURL[] = "chrome://inspect/"; |
| 66 const char kChromeUIInstantURL[] = "chrome://instant/"; | 66 const char kChromeUIInstantURL[] = "chrome://instant/"; |
| 67 const char kChromeUIInterstitialURL[] = "chrome://interstitials/"; | 67 const char kChromeUIInterstitialURL[] = "chrome://interstitials/"; |
| 68 const char kChromeUIInvalidationsURL[] = "chrome://invalidations/"; | 68 const char kChromeUIInvalidationsURL[] = "chrome://invalidations/"; |
| 69 const char kChromeUILargeIconURL[] = "chrome://large-icon/"; | |
| 70 const char kChromeUIMdPolicyURL[] = "chrome://md-policy/"; | 69 const char kChromeUIMdPolicyURL[] = "chrome://md-policy/"; |
| 71 const char kChromeUIMdSettingsURL[] = "chrome://md-settings/"; | 70 const char kChromeUIMdSettingsURL[] = "chrome://md-settings/"; |
| 72 const char kChromeUINaClURL[] = "chrome://nacl/"; | 71 const char kChromeUINaClURL[] = "chrome://nacl/"; |
| 73 const char kChromeUINetInternalsURL[] = "chrome://net-internals/"; | 72 const char kChromeUINetInternalsURL[] = "chrome://net-internals/"; |
| 74 const char kChromeUINewProfileURL[] = "chrome://newprofile/"; | 73 const char kChromeUINewProfileURL[] = "chrome://newprofile/"; |
| 75 const char kChromeUINewTabURL[] = "chrome://newtab/"; | 74 const char kChromeUINewTabURL[] = "chrome://newtab/"; |
| 76 const char kChromeUINTPTilesInternalsURL[] = "chrome://ntp-tiles-internals/"; | 75 const char kChromeUINTPTilesInternalsURL[] = "chrome://ntp-tiles-internals/"; |
| 77 const char kChromeUIOmniboxURL[] = "chrome://omnibox/"; | 76 const char kChromeUIOmniboxURL[] = "chrome://omnibox/"; |
| 78 const char kChromeUIPolicyURL[] = "chrome://policy/"; | 77 const char kChromeUIPolicyURL[] = "chrome://policy/"; |
| 79 const char kChromeUIMdUserManagerUrl[] = "chrome://md-user-manager/"; | 78 const char kChromeUIMdUserManagerUrl[] = "chrome://md-user-manager/"; |
| (...skipping 751 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 831 #endif | 830 #endif |
| 832 | 831 |
| 833 const char kChooserUsbOverviewURL[] = | 832 const char kChooserUsbOverviewURL[] = |
| 834 "https://support.google.com/chrome?p=webusb"; | 833 "https://support.google.com/chrome?p=webusb"; |
| 835 | 834 |
| 836 #if defined(OS_CHROMEOS) | 835 #if defined(OS_CHROMEOS) |
| 837 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; | 836 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; |
| 838 #endif | 837 #endif |
| 839 | 838 |
| 840 } // namespace chrome | 839 } // namespace chrome |
| OLD | NEW |