| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 namespace chrome { | 10 namespace chrome { |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 extern const char kViewSourceScheme[]; | 27 extern const char kViewSourceScheme[]; |
| 28 | 28 |
| 29 // Used to separate a standard scheme and the hostname: "://". | 29 // Used to separate a standard scheme and the hostname: "://". |
| 30 extern const char kStandardSchemeSeparator[]; | 30 extern const char kStandardSchemeSeparator[]; |
| 31 | 31 |
| 32 // About URLs (including schmes). | 32 // About URLs (including schmes). |
| 33 extern const char kAboutBlankURL[]; | 33 extern const char kAboutBlankURL[]; |
| 34 extern const char kAboutCacheURL[]; | 34 extern const char kAboutCacheURL[]; |
| 35 extern const char kAboutMemoryURL[]; | 35 extern const char kAboutMemoryURL[]; |
| 36 | 36 |
| 37 // chrome-ui: URLs (including schemes). Should be kept in sync with the | 37 // chrome: URLs (including schemes). Should be kept in sync with the |
| 38 // components below. | 38 // components below. |
| 39 extern const char kChromeUIDevToolsURL[]; | 39 extern const char kChromeUIDevToolsURL[]; |
| 40 extern const char kChromeUIDownloadsURL[]; | 40 extern const char kChromeUIDownloadsURL[]; |
| 41 extern const char kChromeUIExtensionsURL[]; | 41 extern const char kChromeUIExtensionsURL[]; |
| 42 extern const char kChromeUIHistoryURL[]; | 42 extern const char kChromeUIHistoryURL[]; |
| 43 extern const char kChromeUIIPCURL[]; | 43 extern const char kChromeUIIPCURL[]; |
| 44 extern const char kChromeUIInspectorURL[]; | 44 extern const char kChromeUIInspectorURL[]; |
| 45 extern const char kChromeUINetworkURL[]; | 45 extern const char kChromeUINetworkURL[]; |
| 46 extern const char kChromeUINewTabURL[]; | 46 extern const char kChromeUINewTabURL[]; |
| 47 | 47 |
| 48 // chrome-ui components of URLs. Should be kept in sync with the full URLs | 48 // chrome components of URLs. Should be kept in sync with the full URLs |
| 49 // above. | 49 // above. |
| 50 extern const char kChromeUIDevToolsHost[]; | 50 extern const char kChromeUIDevToolsHost[]; |
| 51 extern const char kChromeUIDialogHost[]; | 51 extern const char kChromeUIDialogHost[]; |
| 52 extern const char kChromeUIDownloadsHost[]; | 52 extern const char kChromeUIDownloadsHost[]; |
| 53 extern const char kChromeUIExtensionsHost[]; | 53 extern const char kChromeUIExtensionsHost[]; |
| 54 extern const char kChromeUIFavIconPath[]; | 54 extern const char kChromeUIFavIconPath[]; |
| 55 extern const char kChromeUIHistoryHost[]; | 55 extern const char kChromeUIHistoryHost[]; |
| 56 extern const char kChromeUIInspectorHost[]; | 56 extern const char kChromeUIInspectorHost[]; |
| 57 extern const char kChromeUINewTabHost[]; | 57 extern const char kChromeUINewTabHost[]; |
| 58 extern const char kChromeUIThumbnailPath[]; | 58 extern const char kChromeUIThumbnailPath[]; |
| 59 | 59 |
| 60 } // namespace chrome | 60 } // namespace chrome |
| 61 | 61 |
| 62 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 62 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |