| 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[]; |
| 51 extern const char kChromeUICloudPrintResourcesURL[]; | 52 extern const char kChromeUICloudPrintResourcesURL[]; |
| 52 extern const char kChromeUIConflictsURL[]; | 53 extern const char kChromeUIConflictsURL[]; |
| 53 extern const char kChromeUIConstrainedHTMLTestURL[]; | 54 extern const char kChromeUIConstrainedHTMLTestURL[]; |
| 54 extern const char kChromeUICrashesURL[]; | 55 extern const char kChromeUICrashesURL[]; |
| 55 extern const char kChromeUICrashURL[]; | 56 extern const char kChromeUICrashURL[]; |
| 56 extern const char kChromeUICreditsURL[]; | 57 extern const char kChromeUICreditsURL[]; |
| 57 extern const char kChromeUIDevToolsURL[]; | 58 extern const char kChromeUIDevToolsURL[]; |
| 58 extern const char kChromeUIDownloadsURL[]; | 59 extern const char kChromeUIDownloadsURL[]; |
| 59 extern const char kChromeUIExtensionIconURL[]; | 60 extern const char kChromeUIExtensionIconURL[]; |
| 60 extern const char kChromeUIExtensionsURL[]; | 61 extern const char kChromeUIExtensionsURL[]; |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 // The URL for the "Learn more" page for the blocked plugin infobar. | 253 // The URL for the "Learn more" page for the blocked plugin infobar. |
| 253 extern const char kBlockedPluginLearnMoreURL[]; | 254 extern const char kBlockedPluginLearnMoreURL[]; |
| 254 | 255 |
| 255 // Call near the beginning of startup to register Chrome's internal URLs that | 256 // Call near the beginning of startup to register Chrome's internal URLs that |
| 256 // should be parsed as "standard" with the googleurl library. | 257 // should be parsed as "standard" with the googleurl library. |
| 257 void RegisterChromeSchemes(); | 258 void RegisterChromeSchemes(); |
| 258 | 259 |
| 259 } // namespace chrome | 260 } // namespace chrome |
| 260 | 261 |
| 261 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 262 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |