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 28 matching lines...) Expand all Loading... |
39 extern const char kAboutBrowserCrash[]; | 39 extern const char kAboutBrowserCrash[]; |
40 extern const char kAboutCacheURL[]; | 40 extern const char kAboutCacheURL[]; |
41 extern const char kAboutNetInternalsURL[]; | 41 extern const char kAboutNetInternalsURL[]; |
42 extern const char kAboutCrashURL[]; | 42 extern const char kAboutCrashURL[]; |
43 extern const char kAboutCreditsURL[]; | 43 extern const char kAboutCreditsURL[]; |
44 extern const char kAboutHangURL[]; | 44 extern const char kAboutHangURL[]; |
45 extern const char kAboutMemoryURL[]; | 45 extern const char kAboutMemoryURL[]; |
46 extern const char kAboutPluginsURL[]; | 46 extern const char kAboutPluginsURL[]; |
47 extern const char kAboutShorthangURL[]; | 47 extern const char kAboutShorthangURL[]; |
48 extern const char kAboutTermsURL[]; | 48 extern const char kAboutTermsURL[]; |
49 extern const char kAboutAboutURL[]; | |
50 extern const char kAboutDNSURL[]; | |
51 extern const char kAboutHistogramsURL[]; | |
52 extern const char kAboutVersionURL[]; | |
53 | 49 |
54 // chrome: URLs (including schemes). Should be kept in sync with the | 50 // chrome: URLs (including schemes). Should be kept in sync with the |
55 // components below. | 51 // components below. |
56 extern const char kChromeUIAppLauncherURL[]; | 52 extern const char kChromeUIAppLauncherURL[]; |
57 extern const char kChromeUIBookmarksURL[]; | 53 extern const char kChromeUIBookmarksURL[]; |
58 extern const char kChromeUIDevToolsURL[]; | 54 extern const char kChromeUIDevToolsURL[]; |
59 extern const char kChromeUIDownloadsURL[]; | 55 extern const char kChromeUIDownloadsURL[]; |
60 extern const char kChromeUIExtensionsURL[]; | 56 extern const char kChromeUIExtensionsURL[]; |
61 extern const char kChromeUIFavIconURL[]; | 57 extern const char kChromeUIFavIconURL[]; |
62 extern const char kChromeUIFileBrowseURL[]; | 58 extern const char kChromeUIFileBrowseURL[]; |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 extern const char kNetworkViewCacheURL[]; | 111 extern const char kNetworkViewCacheURL[]; |
116 extern const char kNetworkViewInternalsURL[]; | 112 extern const char kNetworkViewInternalsURL[]; |
117 | 113 |
118 // Call near the beginning of startup to register Chrome's internal URLs that | 114 // Call near the beginning of startup to register Chrome's internal URLs that |
119 // should be parsed as "standard" with the googleurl library. | 115 // should be parsed as "standard" with the googleurl library. |
120 void RegisterChromeSchemes(); | 116 void RegisterChromeSchemes(); |
121 | 117 |
122 } // namespace chrome | 118 } // namespace chrome |
123 | 119 |
124 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 120 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |