OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 30 matching lines...) Expand all Loading... |
41 extern const char kAboutSyncURL[]; | 41 extern const char kAboutSyncURL[]; |
42 extern const char kAboutSyncInternalsURL[]; | 42 extern const char kAboutSyncInternalsURL[]; |
43 extern const char kAboutTermsURL[]; | 43 extern const char kAboutTermsURL[]; |
44 extern const char kAboutVersionURL[]; | 44 extern const char kAboutVersionURL[]; |
45 | 45 |
46 // chrome: URLs (including schemes). Should be kept in sync with the | 46 // chrome: URLs (including schemes). Should be kept in sync with the |
47 // components below. | 47 // components below. |
48 extern const char kChromeUIAboutURL[]; | 48 extern const char kChromeUIAboutURL[]; |
49 extern const char kChromeUIBookmarksURL[]; | 49 extern const char kChromeUIBookmarksURL[]; |
50 extern const char kChromeUIBugReportURL[]; | 50 extern const char kChromeUIBugReportURL[]; |
51 extern const char kChromeUIChromeURLsURL[]; | |
52 extern const char kChromeUICloudPrintResourcesURL[]; | 51 extern const char kChromeUICloudPrintResourcesURL[]; |
53 extern const char kChromeUIConflictsURL[]; | 52 extern const char kChromeUIConflictsURL[]; |
54 extern const char kChromeUIConstrainedHTMLTestURL[]; | 53 extern const char kChromeUIConstrainedHTMLTestURL[]; |
55 extern const char kChromeUICrashesURL[]; | 54 extern const char kChromeUICrashesURL[]; |
56 extern const char kChromeUICrashURL[]; | 55 extern const char kChromeUICrashURL[]; |
57 extern const char kChromeUICreditsURL[]; | 56 extern const char kChromeUICreditsURL[]; |
58 extern const char kChromeUIDevToolsURL[]; | 57 extern const char kChromeUIDevToolsURL[]; |
59 extern const char kChromeUIDownloadsURL[]; | 58 extern const char kChromeUIDownloadsURL[]; |
60 extern const char kChromeUIExtensionIconURL[]; | 59 extern const char kChromeUIExtensionIconURL[]; |
61 extern const char kChromeUIExtensionsURL[]; | 60 extern const char kChromeUIExtensionsURL[]; |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 // The URL for the "Learn more" page for the blocked plugin infobar. | 252 // The URL for the "Learn more" page for the blocked plugin infobar. |
254 extern const char kBlockedPluginLearnMoreURL[]; | 253 extern const char kBlockedPluginLearnMoreURL[]; |
255 | 254 |
256 // Call near the beginning of startup to register Chrome's internal URLs that | 255 // Call near the beginning of startup to register Chrome's internal URLs that |
257 // should be parsed as "standard" with the googleurl library. | 256 // should be parsed as "standard" with the googleurl library. |
258 void RegisterChromeSchemes(); | 257 void RegisterChromeSchemes(); |
259 | 258 |
260 } // namespace chrome | 259 } // namespace chrome |
261 | 260 |
262 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 261 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |