| 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 26 matching lines...) Expand all Loading... |
| 37 extern const char* kSavableSchemes[]; | 37 extern const char* kSavableSchemes[]; |
| 38 | 38 |
| 39 // About URLs (including schemes). | 39 // About URLs (including schemes). |
| 40 extern const char kAboutAboutURL[]; | 40 extern const char kAboutAboutURL[]; |
| 41 extern const char kAboutAppCacheInternalsURL[]; | 41 extern const char kAboutAppCacheInternalsURL[]; |
| 42 extern const char kAboutBlankURL[]; | 42 extern const char kAboutBlankURL[]; |
| 43 extern const char kAboutBrowserCrash[]; | 43 extern const char kAboutBrowserCrash[]; |
| 44 extern const char kAboutConflicts[]; | 44 extern const char kAboutConflicts[]; |
| 45 extern const char kAboutCacheURL[]; | 45 extern const char kAboutCacheURL[]; |
| 46 extern const char kAboutCrashURL[]; | 46 extern const char kAboutCrashURL[]; |
| 47 extern const char kAboutKillURL[]; |
| 47 extern const char kAboutCreditsURL[]; | 48 extern const char kAboutCreditsURL[]; |
| 48 extern const char kAboutDNSURL[]; | 49 extern const char kAboutDNSURL[]; |
| 49 extern const char kAboutFlagsURL[]; | 50 extern const char kAboutFlagsURL[]; |
| 50 extern const char kAboutGpuURL[]; | 51 extern const char kAboutGpuURL[]; |
| 51 extern const char kAboutGpuCrashURL[]; | 52 extern const char kAboutGpuCrashURL[]; |
| 52 extern const char kAboutGpuHangURL[]; | 53 extern const char kAboutGpuHangURL[]; |
| 53 extern const char kAboutHangURL[]; | 54 extern const char kAboutHangURL[]; |
| 54 extern const char kAboutHistogramsURL[]; | 55 extern const char kAboutHistogramsURL[]; |
| 55 extern const char kAboutMemoryURL[]; | 56 extern const char kAboutMemoryURL[]; |
| 56 extern const char kAboutNetInternalsURL[]; | 57 extern const char kAboutNetInternalsURL[]; |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 | 182 |
| 182 // General help link for Chrome. | 183 // General help link for Chrome. |
| 183 extern const char kChromeHelpURL[]; | 184 extern const char kChromeHelpURL[]; |
| 184 | 185 |
| 185 // "What do these mean?" URL for the Page Info bubble. | 186 // "What do these mean?" URL for the Page Info bubble. |
| 186 extern const char kPageInfoHelpCenterURL[]; | 187 extern const char kPageInfoHelpCenterURL[]; |
| 187 | 188 |
| 188 // "Learn more" URL for "Aw snap" page. | 189 // "Learn more" URL for "Aw snap" page. |
| 189 extern const char kCrashReasonURL[]; | 190 extern const char kCrashReasonURL[]; |
| 190 | 191 |
| 192 // "Learn more" URL for killed tab page. |
| 193 extern const char kKillReasonURL[]; |
| 194 |
| 191 // "Learn more" URL for the Privacy section under Options. | 195 // "Learn more" URL for the Privacy section under Options. |
| 192 extern const char kPrivacyLearnMoreURL[]; | 196 extern const char kPrivacyLearnMoreURL[]; |
| 193 | 197 |
| 194 // The URL for the Chromium project used in the About dialog. | 198 // The URL for the Chromium project used in the About dialog. |
| 195 extern const char kChromiumProjectURL[]; | 199 extern const char kChromiumProjectURL[]; |
| 196 | 200 |
| 197 // The URL for the "Learn more" page for the usage/crash reporting option in the | 201 // The URL for the "Learn more" page for the usage/crash reporting option in the |
| 198 // first run dialog. | 202 // first run dialog. |
| 199 extern const char kLearnMoreReportingURL[]; | 203 extern const char kLearnMoreReportingURL[]; |
| 200 | 204 |
| 201 // Call near the beginning of startup to register Chrome's internal URLs that | 205 // Call near the beginning of startup to register Chrome's internal URLs that |
| 202 // should be parsed as "standard" with the googleurl library. | 206 // should be parsed as "standard" with the googleurl library. |
| 203 void RegisterChromeSchemes(); | 207 void RegisterChromeSchemes(); |
| 204 | 208 |
| 205 } // namespace chrome | 209 } // namespace chrome |
| 206 | 210 |
| 207 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 211 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |