| 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 const char kChromeUIOobeURL[] = "chrome://oobe/"; | 122 const char kChromeUIOobeURL[] = "chrome://oobe/"; |
| 123 const char kChromeUIOSCreditsURL[] = "chrome://os-credits/"; | 123 const char kChromeUIOSCreditsURL[] = "chrome://os-credits/"; |
| 124 const char kChromeUIProxySettingsURL[] = "chrome://proxy-settings/"; | 124 const char kChromeUIProxySettingsURL[] = "chrome://proxy-settings/"; |
| 125 const char kChromeUIScreenlockIconURL[] = "chrome://screenlock-icon/"; | 125 const char kChromeUIScreenlockIconURL[] = "chrome://screenlock-icon/"; |
| 126 const char kChromeUISetTimeURL[] = "chrome://set-time/"; | 126 const char kChromeUISetTimeURL[] = "chrome://set-time/"; |
| 127 const char kChromeUISimUnlockURL[] = "chrome://sim-unlock/"; | 127 const char kChromeUISimUnlockURL[] = "chrome://sim-unlock/"; |
| 128 const char kChromeUISlowURL[] = "chrome://slow/"; | 128 const char kChromeUISlowURL[] = "chrome://slow/"; |
| 129 const char kChromeUISystemInfoURL[] = "chrome://system/"; | 129 const char kChromeUISystemInfoURL[] = "chrome://system/"; |
| 130 const char kChromeUITermsOemURL[] = "chrome://terms/oem"; | 130 const char kChromeUITermsOemURL[] = "chrome://terms/oem"; |
| 131 const char kChromeUIUserImageURL[] = "chrome://userimage/"; | 131 const char kChromeUIUserImageURL[] = "chrome://userimage/"; |
| 132 const char kChromeUIMdCupsSettingsURL[] = "chrome://settings/cupsPrinters"; | 132 // TODO(xdai): Change it to chrome://settings/cupsPrinters after M56 since MD |
| 133 // settings is going to launch in Chrome OS in M57. |
| 134 const char kChromeUIMdCupsSettingsURL[] = "chrome://md-settings/cupsPrinters"; |
| 133 #endif // defined(OS_CHROMEOS) | 135 #endif // defined(OS_CHROMEOS) |
| 134 | 136 |
| 135 #if defined(OS_WIN) | 137 #if defined(OS_WIN) |
| 136 const char kChromeUIMetroFlowURL[] = "chrome://make-metro/"; | 138 const char kChromeUIMetroFlowURL[] = "chrome://make-metro/"; |
| 137 #endif | 139 #endif |
| 138 | 140 |
| 139 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA) | 141 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA) |
| 140 const char kChromeUITabModalConfirmDialogURL[] = | 142 const char kChromeUITabModalConfirmDialogURL[] = |
| 141 "chrome://tab-modal-confirm-dialog/"; | 143 "chrome://tab-modal-confirm-dialog/"; |
| 142 #endif | 144 #endif |
| (...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 799 #endif | 801 #endif |
| 800 | 802 |
| 801 const char kChooserUsbOverviewURL[] = | 803 const char kChooserUsbOverviewURL[] = |
| 802 "https://support.google.com/chrome?p=webusb"; | 804 "https://support.google.com/chrome?p=webusb"; |
| 803 | 805 |
| 804 #if defined(OS_CHROMEOS) | 806 #if defined(OS_CHROMEOS) |
| 805 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; | 807 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; |
| 806 #endif | 808 #endif |
| 807 | 809 |
| 808 } // namespace chrome | 810 } // namespace chrome |
| OLD | NEW |