Chromium Code Reviews| 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 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 53 extern const char kAboutHistogramsURL[]; | 53 extern const char kAboutHistogramsURL[]; |
| 54 extern const char kAboutMemoryURL[]; | 54 extern const char kAboutMemoryURL[]; |
| 55 extern const char kAboutNetInternalsURL[]; | 55 extern const char kAboutNetInternalsURL[]; |
| 56 extern const char kAboutPluginsURL[]; | 56 extern const char kAboutPluginsURL[]; |
| 57 extern const char kAboutShorthangURL[]; | 57 extern const char kAboutShorthangURL[]; |
| 58 extern const char kAboutTermsURL[]; | 58 extern const char kAboutTermsURL[]; |
| 59 extern const char kAboutVaporwareURL[]; | 59 extern const char kAboutVaporwareURL[]; |
| 60 extern const char kAboutVersionURL[]; | 60 extern const char kAboutVersionURL[]; |
| 61 | 61 |
| 62 // chrome: URLs (including schemes). Should be kept in sync with the | 62 // chrome: URLs (including schemes). Should be kept in sync with the |
| 63 // components below. | 63 // components below. |
|
Daniel Erat
2010/11/24 23:39:44
I ignored this comment, since there already seems
| |
| 64 extern const char kChromeUIAboutAboutURL[]; | 64 extern const char kChromeUIAboutAboutURL[]; |
| 65 extern const char kChromeUIAboutCreditsURL[]; | |
| 65 extern const char kChromeUIAboutURL[]; | 66 extern const char kChromeUIAboutURL[]; |
| 66 extern const char kChromeUIAppLauncherURL[]; | 67 extern const char kChromeUIAppLauncherURL[]; |
| 67 extern const char kChromeUIBookmarksURL[]; | 68 extern const char kChromeUIBookmarksURL[]; |
| 68 extern const char kChromeUIBugReportURL[]; | 69 extern const char kChromeUIBugReportURL[]; |
| 69 extern const char kChromeUIConflictsURL[]; | 70 extern const char kChromeUIConflictsURL[]; |
| 70 extern const char kChromeUIConstrainedHTMLTestURL[]; | 71 extern const char kChromeUIConstrainedHTMLTestURL[]; |
| 71 extern const char kChromeUIDevToolsURL[]; | 72 extern const char kChromeUIDevToolsURL[]; |
| 72 extern const char kChromeUIDownloadsURL[]; | 73 extern const char kChromeUIDownloadsURL[]; |
| 73 extern const char kChromeUIExtensionsURL[]; | 74 extern const char kChromeUIExtensionsURL[]; |
| 74 extern const char kChromeUIFlagsURL[]; | 75 extern const char kChromeUIFlagsURL[]; |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 182 // "Learn more" URL for the Privacy section under Options. | 183 // "Learn more" URL for the Privacy section under Options. |
| 183 extern const char kPrivacyLearnMoreURL[]; | 184 extern const char kPrivacyLearnMoreURL[]; |
| 184 | 185 |
| 185 // Call near the beginning of startup to register Chrome's internal URLs that | 186 // Call near the beginning of startup to register Chrome's internal URLs that |
| 186 // should be parsed as "standard" with the googleurl library. | 187 // should be parsed as "standard" with the googleurl library. |
| 187 void RegisterChromeSchemes(); | 188 void RegisterChromeSchemes(); |
| 188 | 189 |
| 189 } // namespace chrome | 190 } // namespace chrome |
| 190 | 191 |
| 191 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 192 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |