| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 extern const char kAboutNetInternalsURL[]; | 56 extern const char kAboutNetInternalsURL[]; |
| 57 extern const char kAboutPluginsURL[]; | 57 extern const char kAboutPluginsURL[]; |
| 58 extern const char kAboutShorthangURL[]; | 58 extern const char kAboutShorthangURL[]; |
| 59 extern const char kAboutTermsURL[]; | 59 extern const char kAboutTermsURL[]; |
| 60 extern const char kAboutVaporwareURL[]; | 60 extern const char kAboutVaporwareURL[]; |
| 61 extern const char kAboutVersionURL[]; | 61 extern const char kAboutVersionURL[]; |
| 62 | 62 |
| 63 // chrome: URLs (including schemes). Should be kept in sync with the | 63 // chrome: URLs (including schemes). Should be kept in sync with the |
| 64 // components below. | 64 // components below. |
| 65 extern const char kChromeUIAboutAboutURL[]; | 65 extern const char kChromeUIAboutAboutURL[]; |
| 66 extern const char kChromeUIAboutCreditsURL[]; |
| 66 extern const char kChromeUIAboutURL[]; | 67 extern const char kChromeUIAboutURL[]; |
| 67 extern const char kChromeUIAppLauncherURL[]; | 68 extern const char kChromeUIAppLauncherURL[]; |
| 68 extern const char kChromeUIBookmarksURL[]; | 69 extern const char kChromeUIBookmarksURL[]; |
| 69 extern const char kChromeUIBugReportURL[]; | 70 extern const char kChromeUIBugReportURL[]; |
| 70 extern const char kChromeUIConflictsURL[]; | 71 extern const char kChromeUIConflictsURL[]; |
| 71 extern const char kChromeUIConstrainedHTMLTestURL[]; | 72 extern const char kChromeUIConstrainedHTMLTestURL[]; |
| 72 extern const char kChromeUIDevToolsURL[]; | 73 extern const char kChromeUIDevToolsURL[]; |
| 73 extern const char kChromeUIDownloadsURL[]; | 74 extern const char kChromeUIDownloadsURL[]; |
| 74 extern const char kChromeUIExtensionsURL[]; | 75 extern const char kChromeUIExtensionsURL[]; |
| 75 extern const char kChromeUIFlagsURL[]; | 76 extern const char kChromeUIFlagsURL[]; |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 // "Learn more" URL for the Privacy section under Options. | 190 // "Learn more" URL for the Privacy section under Options. |
| 190 extern const char kPrivacyLearnMoreURL[]; | 191 extern const char kPrivacyLearnMoreURL[]; |
| 191 | 192 |
| 192 // Call near the beginning of startup to register Chrome's internal URLs that | 193 // Call near the beginning of startup to register Chrome's internal URLs that |
| 193 // should be parsed as "standard" with the googleurl library. | 194 // should be parsed as "standard" with the googleurl library. |
| 194 void RegisterChromeSchemes(); | 195 void RegisterChromeSchemes(); |
| 195 | 196 |
| 196 } // namespace chrome | 197 } // namespace chrome |
| 197 | 198 |
| 198 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 199 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |