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