OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 extern const char kChromeUIDownloadsURL[]; | 59 extern const char kChromeUIDownloadsURL[]; |
60 extern const char kChromeUIExtensionsURL[]; | 60 extern const char kChromeUIExtensionsURL[]; |
61 extern const char kChromeUIFavIconURL[]; | 61 extern const char kChromeUIFavIconURL[]; |
62 extern const char kChromeUIFileBrowseURL[]; | 62 extern const char kChromeUIFileBrowseURL[]; |
63 extern const char kChromeUIHistoryURL[]; | 63 extern const char kChromeUIHistoryURL[]; |
64 extern const char kChromeUIHistory2URL[]; | 64 extern const char kChromeUIHistory2URL[]; |
65 extern const char kChromeUIIPCURL[]; | 65 extern const char kChromeUIIPCURL[]; |
66 extern const char kChromeUIMediaplayerURL[]; | 66 extern const char kChromeUIMediaplayerURL[]; |
67 extern const char kChromeUISlideshowURL[]; | 67 extern const char kChromeUISlideshowURL[]; |
68 extern const char kChromeUIOptionsURL[]; | 68 extern const char kChromeUIOptionsURL[]; |
69 extern const char kChromeUINetworkURL[]; | |
70 extern const char kChromeUINewTabURL[]; | 69 extern const char kChromeUINewTabURL[]; |
71 extern const char kChromeUIPluginsURL[]; | 70 extern const char kChromeUIPluginsURL[]; |
72 extern const char kChromeUIPrintURL[]; | 71 extern const char kChromeUIPrintURL[]; |
73 | 72 |
74 // chrome components of URLs. Should be kept in sync with the full URLs | 73 // chrome components of URLs. Should be kept in sync with the full URLs |
75 // above. | 74 // above. |
76 extern const char kChromeUIBookmarksHost[]; | 75 extern const char kChromeUIBookmarksHost[]; |
77 extern const char kChromeUIDevToolsHost[]; | 76 extern const char kChromeUIDevToolsHost[]; |
78 extern const char kChromeUIDialogHost[]; | 77 extern const char kChromeUIDialogHost[]; |
79 extern const char kChromeUIDownloadsHost[]; | 78 extern const char kChromeUIDownloadsHost[]; |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 extern const char kNetworkViewCacheURL[]; | 113 extern const char kNetworkViewCacheURL[]; |
115 extern const char kNetworkViewInternalsURL[]; | 114 extern const char kNetworkViewInternalsURL[]; |
116 | 115 |
117 // Call near the beginning of startup to register Chrome's internal URLs that | 116 // Call near the beginning of startup to register Chrome's internal URLs that |
118 // should be parsed as "standard" with the googleurl library. | 117 // should be parsed as "standard" with the googleurl library. |
119 void RegisterChromeSchemes(); | 118 void RegisterChromeSchemes(); |
120 | 119 |
121 } // namespace chrome | 120 } // namespace chrome |
122 | 121 |
123 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 122 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |