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 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
597 extern const char kChooserUsbOverviewURL[]; | 598 extern const char kChooserUsbOverviewURL[]; |
598 | 599 |
599 #if defined(OS_CHROMEOS) | 600 #if defined(OS_CHROMEOS) |
600 // The URL for EOL notification | 601 // The URL for EOL notification |
601 extern const char kEolNotificationURL[]; | 602 extern const char kEolNotificationURL[]; |
602 #endif | 603 #endif |
603 | 604 |
604 } // namespace chrome | 605 } // namespace chrome |
605 | 606 |
606 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 607 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |