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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 extern const char kChromeUIGestureConfigURL[]; | 126 extern const char kChromeUIGestureConfigURL[]; |
127 extern const char kChromeUIGestureConfigHost[]; | 127 extern const char kChromeUIGestureConfigHost[]; |
128 extern const char kChromeUISalsaURL[]; | 128 extern const char kChromeUISalsaURL[]; |
129 extern const char kChromeUISalsaHost[]; | 129 extern const char kChromeUISalsaHost[]; |
130 #endif | 130 #endif |
131 | 131 |
132 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA) | 132 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA) |
133 extern const char kChromeUITabModalConfirmDialogURL[]; | 133 extern const char kChromeUITabModalConfirmDialogURL[]; |
134 #endif | 134 #endif |
135 | 135 |
| 136 #if !defined(OS_ANDROID) && !defined(OS_IOS) |
| 137 extern const char kChromeUICopresenceURL[]; |
| 138 extern const char kChromeUICopresenceHost[]; |
| 139 #endif |
| 140 |
136 #if defined(ENABLE_WEBRTC) | 141 #if defined(ENABLE_WEBRTC) |
137 extern const char kChromeUIWebRtcLogsURL[]; | 142 extern const char kChromeUIWebRtcLogsURL[]; |
138 #endif | 143 #endif |
139 | 144 |
140 // chrome components of URLs. Should be kept in sync with the full URLs above. | 145 // chrome components of URLs. Should be kept in sync with the full URLs above. |
141 extern const char kChromeUIAboutHost[]; | 146 extern const char kChromeUIAboutHost[]; |
142 extern const char kChromeUIAboutPageFrameHost[]; | 147 extern const char kChromeUIAboutPageFrameHost[]; |
143 extern const char kChromeUIBlankHost[]; | 148 extern const char kChromeUIBlankHost[]; |
144 extern const char kChromeUIAppLauncherPageHost[]; | 149 extern const char kChromeUIAppLauncherPageHost[]; |
145 extern const char kChromeUIAppListStartPageHost[]; | 150 extern const char kChromeUIAppListStartPageHost[]; |
(...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
544 // The URL for the 32-bit Mac deprecation help center article | 549 // The URL for the 32-bit Mac deprecation help center article |
545 extern const char kMac32BitDeprecationURL[]; | 550 extern const char kMac32BitDeprecationURL[]; |
546 #endif | 551 #endif |
547 | 552 |
548 // The URL for the "Learn more" link the the Easy Unlock settings. | 553 // The URL for the "Learn more" link the the Easy Unlock settings. |
549 extern const char kEasyUnlockLearnMoreUrl[]; | 554 extern const char kEasyUnlockLearnMoreUrl[]; |
550 | 555 |
551 } // namespace chrome | 556 } // namespace chrome |
552 | 557 |
553 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 558 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |