| 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 // Contains constants for known URLs and portions thereof. | 5 // Contains constants for known URLs and portions thereof. |
| 6 | 6 |
| 7 #ifndef CHROME_COMMON_URL_CONSTANTS_H_ | 7 #ifndef CHROME_COMMON_URL_CONSTANTS_H_ |
| 8 #define CHROME_COMMON_URL_CONSTANTS_H_ | 8 #define CHROME_COMMON_URL_CONSTANTS_H_ |
| 9 | 9 |
| 10 #include <stddef.h> | 10 #include <stddef.h> |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 extern const char kChromeUIOobeURL[]; | 109 extern const char kChromeUIOobeURL[]; |
| 110 extern const char kChromeUIOSCreditsURL[]; | 110 extern const char kChromeUIOSCreditsURL[]; |
| 111 extern const char kChromeUIProxySettingsURL[]; | 111 extern const char kChromeUIProxySettingsURL[]; |
| 112 extern const char kChromeUIScreenlockIconURL[]; | 112 extern const char kChromeUIScreenlockIconURL[]; |
| 113 extern const char kChromeUISetTimeURL[]; | 113 extern const char kChromeUISetTimeURL[]; |
| 114 extern const char kChromeUISimUnlockURL[]; | 114 extern const char kChromeUISimUnlockURL[]; |
| 115 extern const char kChromeUISlowURL[]; | 115 extern const char kChromeUISlowURL[]; |
| 116 extern const char kChromeUISystemInfoURL[]; | 116 extern const char kChromeUISystemInfoURL[]; |
| 117 extern const char kChromeUITermsOemURL[]; | 117 extern const char kChromeUITermsOemURL[]; |
| 118 extern const char kChromeUIUserImageURL[]; | 118 extern const char kChromeUIUserImageURL[]; |
| 119 extern const char kChromeUIMdCupsSettingsURL[]; |
| 119 #endif // defined(OS_CHROMEOS) | 120 #endif // defined(OS_CHROMEOS) |
| 120 | 121 |
| 121 #if defined(OS_WIN) | 122 #if defined(OS_WIN) |
| 122 extern const char kChromeUIMetroFlowURL[]; | 123 extern const char kChromeUIMetroFlowURL[]; |
| 123 #endif | 124 #endif |
| 124 | 125 |
| 125 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA) | 126 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA) |
| 126 extern const char kChromeUITabModalConfirmDialogURL[]; | 127 extern const char kChromeUITabModalConfirmDialogURL[]; |
| 127 #endif | 128 #endif |
| 128 | 129 |
| (...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 596 extern const char kChooserUsbOverviewURL[]; | 597 extern const char kChooserUsbOverviewURL[]; |
| 597 | 598 |
| 598 #if defined(OS_CHROMEOS) | 599 #if defined(OS_CHROMEOS) |
| 599 // The URL for EOL notification | 600 // The URL for EOL notification |
| 600 extern const char kEolNotificationURL[]; | 601 extern const char kEolNotificationURL[]; |
| 601 #endif | 602 #endif |
| 602 | 603 |
| 603 } // namespace chrome | 604 } // namespace chrome |
| 604 | 605 |
| 605 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 606 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |