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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 #endif // defined(OS_CHROMEOS) | 118 #endif // defined(OS_CHROMEOS) |
119 | 119 |
120 #if defined(OS_WIN) | 120 #if defined(OS_WIN) |
121 extern const char kChromeUIMetroFlowURL[]; | 121 extern const char kChromeUIMetroFlowURL[]; |
122 #endif | 122 #endif |
123 | 123 |
124 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA) | 124 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA) |
125 extern const char kChromeUITabModalConfirmDialogURL[]; | 125 extern const char kChromeUITabModalConfirmDialogURL[]; |
126 #endif | 126 #endif |
127 | 127 |
128 #if !defined(OS_ANDROID) | |
129 extern const char kChromeUICopresenceURL[]; | |
130 extern const char kChromeUICopresenceHost[]; | |
131 #endif | |
132 | |
133 #if defined(ENABLE_WEBRTC) | 128 #if defined(ENABLE_WEBRTC) |
134 extern const char kChromeUIWebRtcLogsURL[]; | 129 extern const char kChromeUIWebRtcLogsURL[]; |
135 #endif | 130 #endif |
136 | 131 |
137 #if defined(ENABLE_MEDIA_ROUTER) | 132 #if defined(ENABLE_MEDIA_ROUTER) |
138 extern const char kChromeUIMediaRouterURL[]; | 133 extern const char kChromeUIMediaRouterURL[]; |
139 #if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_CHROMEOS) | 134 #if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_CHROMEOS) |
140 extern const char kChromeUICastURL[]; | 135 extern const char kChromeUICastURL[]; |
141 #endif | 136 #endif |
142 #endif | 137 #endif |
(...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
593 extern const char kChooserUsbOverviewURL[]; | 588 extern const char kChooserUsbOverviewURL[]; |
594 | 589 |
595 #if defined(OS_CHROMEOS) | 590 #if defined(OS_CHROMEOS) |
596 // The URL for EOL notification | 591 // The URL for EOL notification |
597 extern const char kEolNotificationURL[]; | 592 extern const char kEolNotificationURL[]; |
598 #endif | 593 #endif |
599 | 594 |
600 } // namespace chrome | 595 } // namespace chrome |
601 | 596 |
602 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 597 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |