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 <string> | 10 #include <string> |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 | 119 |
120 #if defined(USE_AURA) | 120 #if defined(USE_AURA) |
121 extern const char kChromeUIGestureConfigURL[]; | 121 extern const char kChromeUIGestureConfigURL[]; |
122 extern const char kChromeUIGestureConfigHost[]; | 122 extern const char kChromeUIGestureConfigHost[]; |
123 #endif | 123 #endif |
124 | 124 |
125 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA) | 125 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA) |
126 extern const char kChromeUITabModalConfirmDialogURL[]; | 126 extern const char kChromeUITabModalConfirmDialogURL[]; |
127 #endif | 127 #endif |
128 | 128 |
129 #if !defined(OS_ANDROID) && !defined(OS_IOS) | 129 #if !defined(OS_IOS) |
130 extern const char kChromeUICopresenceURL[]; | 130 extern const char kChromeUICopresenceURL[]; |
131 extern const char kChromeUICopresenceHost[]; | 131 extern const char kChromeUICopresenceHost[]; |
132 #endif | 132 #endif |
133 | 133 |
134 #if defined(ENABLE_WEBRTC) | 134 #if defined(ENABLE_WEBRTC) |
135 extern const char kChromeUIWebRtcLogsURL[]; | 135 extern const char kChromeUIWebRtcLogsURL[]; |
136 #endif | 136 #endif |
137 | 137 |
138 #if defined(ENABLE_MEDIA_ROUTER) | 138 #if defined(ENABLE_MEDIA_ROUTER) |
139 extern const char kChromeUIMediaRouterURL[]; | 139 extern const char kChromeUIMediaRouterURL[]; |
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
550 extern const char kEasyUnlockLearnMoreUrl[]; | 550 extern const char kEasyUnlockLearnMoreUrl[]; |
551 | 551 |
552 #if defined(OS_WIN) || defined(OS_CHROMEOS) | 552 #if defined(OS_WIN) || defined(OS_CHROMEOS) |
553 extern const char kChromeUIDiscardsHost[]; | 553 extern const char kChromeUIDiscardsHost[]; |
554 extern const char kChromeUIDiscardsURL[]; | 554 extern const char kChromeUIDiscardsURL[]; |
555 #endif | 555 #endif |
556 | 556 |
557 } // namespace chrome | 557 } // namespace chrome |
558 | 558 |
559 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 559 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |