| 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 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 #endif | 93 #endif |
| 94 | 94 |
| 95 #if defined(USE_ASH) | 95 #if defined(USE_ASH) |
| 96 extern const char kChromeUITransparencyURL[]; | 96 extern const char kChromeUITransparencyURL[]; |
| 97 #endif | 97 #endif |
| 98 | 98 |
| 99 #if defined(FILE_MANAGER_EXTENSION) | 99 #if defined(FILE_MANAGER_EXTENSION) |
| 100 extern const char kChromeUIFileManagerURL[]; | 100 extern const char kChromeUIFileManagerURL[]; |
| 101 #endif | 101 #endif |
| 102 | 102 |
| 103 #if defined(USE_AURA) |
| 104 extern const char kChromeUIGestureConfigURL[]; |
| 105 extern const char kChromeUIGestureConfigHost[]; |
| 106 #endif |
| 107 |
| 103 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA) | 108 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA) |
| 104 extern const char kChromeUICollectedCookiesURL[]; | 109 extern const char kChromeUICollectedCookiesURL[]; |
| 105 extern const char kChromeUIHttpAuthURL[]; | 110 extern const char kChromeUIHttpAuthURL[]; |
| 106 extern const char kChromeUITabModalConfirmDialogURL[]; | 111 extern const char kChromeUITabModalConfirmDialogURL[]; |
| 107 #endif | 112 #endif |
| 108 | 113 |
| 109 // chrome components of URLs. Should be kept in sync with the full URLs above. | 114 // chrome components of URLs. Should be kept in sync with the full URLs above. |
| 110 extern const char kChromeUIAboutHost[]; | 115 extern const char kChromeUIAboutHost[]; |
| 111 extern const char kChromeUIAboutPageFrameHost[]; | 116 extern const char kChromeUIAboutPageFrameHost[]; |
| 112 extern const char kChromeUIBlankHost[]; | 117 extern const char kChromeUIBlankHost[]; |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 369 #endif | 374 #endif |
| 370 | 375 |
| 371 #if defined(OS_CHROMEOS) | 376 #if defined(OS_CHROMEOS) |
| 372 // "Learn more" URL for the Cloud Print section under Options. | 377 // "Learn more" URL for the Cloud Print section under Options. |
| 373 extern const char kCloudPrintLearnMoreURL[]; | 378 extern const char kCloudPrintLearnMoreURL[]; |
| 374 #endif | 379 #endif |
| 375 | 380 |
| 376 } // namespace chrome | 381 } // namespace chrome |
| 377 | 382 |
| 378 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 383 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |