| 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 27 matching lines...) Expand all Loading... |
| 38 extern const char kAboutSyncURL[]; | 38 extern const char kAboutSyncURL[]; |
| 39 extern const char kAboutSyncInternalsURL[]; | 39 extern const char kAboutSyncInternalsURL[]; |
| 40 extern const char kAboutTermsURL[]; | 40 extern const char kAboutTermsURL[]; |
| 41 extern const char kAboutVersionURL[]; | 41 extern const char kAboutVersionURL[]; |
| 42 | 42 |
| 43 // chrome: URLs (including schemes). Should be kept in sync with the | 43 // chrome: URLs (including schemes). Should be kept in sync with the |
| 44 // components below. | 44 // components below. |
| 45 extern const char kChromeUIAboutAboutURL[]; | 45 extern const char kChromeUIAboutAboutURL[]; |
| 46 extern const char kChromeUIAboutCreditsURL[]; | 46 extern const char kChromeUIAboutCreditsURL[]; |
| 47 extern const char kChromeUIAboutURL[]; | 47 extern const char kChromeUIAboutURL[]; |
| 48 extern const char kChromeUIAppLauncherURL[]; | |
| 49 extern const char kChromeUIBookmarksURL[]; | 48 extern const char kChromeUIBookmarksURL[]; |
| 50 extern const char kChromeUIBugReportURL[]; | 49 extern const char kChromeUIBugReportURL[]; |
| 51 extern const char kChromeUIConflictsURL[]; | 50 extern const char kChromeUIConflictsURL[]; |
| 52 extern const char kChromeUIConstrainedHTMLTestURL[]; | 51 extern const char kChromeUIConstrainedHTMLTestURL[]; |
| 53 extern const char kChromeUICrashesURL[]; | 52 extern const char kChromeUICrashesURL[]; |
| 54 extern const char kChromeUIDevToolsURL[]; | 53 extern const char kChromeUIDevToolsURL[]; |
| 55 extern const char kChromeUIDownloadsURL[]; | 54 extern const char kChromeUIDownloadsURL[]; |
| 56 extern const char kChromeUIExtensionIconURL[]; | 55 extern const char kChromeUIExtensionIconURL[]; |
| 57 extern const char kChromeUIExtensionsURL[]; | 56 extern const char kChromeUIExtensionsURL[]; |
| 58 extern const char kChromeUIFlagsURL[]; | 57 extern const char kChromeUIFlagsURL[]; |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 // The URL for the "Learn more" page for the blocked plugin infobar. | 214 // The URL for the "Learn more" page for the blocked plugin infobar. |
| 216 extern const char kBlockedPluginLearnMoreURL[]; | 215 extern const char kBlockedPluginLearnMoreURL[]; |
| 217 | 216 |
| 218 // Call near the beginning of startup to register Chrome's internal URLs that | 217 // Call near the beginning of startup to register Chrome's internal URLs that |
| 219 // should be parsed as "standard" with the googleurl library. | 218 // should be parsed as "standard" with the googleurl library. |
| 220 void RegisterChromeSchemes(); | 219 void RegisterChromeSchemes(); |
| 221 | 220 |
| 222 } // namespace chrome | 221 } // namespace chrome |
| 223 | 222 |
| 224 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 223 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |