| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 | 9 |
| 10 namespace chrome { | 10 namespace chrome { |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 extern const char kChromeUIBookmarksHost[]; | 62 extern const char kChromeUIBookmarksHost[]; |
| 63 extern const char kChromeUIDevToolsHost[]; | 63 extern const char kChromeUIDevToolsHost[]; |
| 64 extern const char kChromeUIDialogHost[]; | 64 extern const char kChromeUIDialogHost[]; |
| 65 extern const char kChromeUIDownloadsHost[]; | 65 extern const char kChromeUIDownloadsHost[]; |
| 66 extern const char kChromeUIExtensionsHost[]; | 66 extern const char kChromeUIExtensionsHost[]; |
| 67 extern const char kChromeUIFavIconPath[]; | 67 extern const char kChromeUIFavIconPath[]; |
| 68 extern const char kChromeUIHistoryHost[]; | 68 extern const char kChromeUIHistoryHost[]; |
| 69 extern const char kChromeUIFileBrowseHost[]; | 69 extern const char kChromeUIFileBrowseHost[]; |
| 70 extern const char kChromeUIMediaplayerHost[]; | 70 extern const char kChromeUIMediaplayerHost[]; |
| 71 extern const char kChromeUIInspectorHost[]; | 71 extern const char kChromeUIInspectorHost[]; |
| 72 extern const char kChromeUINetInternalsHost[]; |
| 72 extern const char kChromeUINewTabHost[]; | 73 extern const char kChromeUINewTabHost[]; |
| 73 extern const char kChromeUIThumbnailPath[]; | 74 extern const char kChromeUIThumbnailPath[]; |
| 74 extern const char kChromeUIThemePath[]; | 75 extern const char kChromeUIThemePath[]; |
| 75 | 76 |
| 76 // Sync related URL components. | 77 // Sync related URL components. |
| 77 extern const char kSyncResourcesHost[]; | 78 extern const char kSyncResourcesHost[]; |
| 78 extern const char kSyncGaiaLoginPath[]; | 79 extern const char kSyncGaiaLoginPath[]; |
| 79 extern const char kSyncMergeAndSyncPath[]; | 80 extern const char kSyncMergeAndSyncPath[]; |
| 80 extern const char kSyncThrobberPath[]; | 81 extern const char kSyncThrobberPath[]; |
| 81 extern const char kSyncSetupFlowPath[]; | 82 extern const char kSyncSetupFlowPath[]; |
| 82 extern const char kSyncSetupDonePath[]; | 83 extern const char kSyncSetupDonePath[]; |
| 83 | 84 |
| 84 // Network related URLs. | 85 // Network related URLs. |
| 85 extern const char kNetworkViewCacheURL[]; | 86 extern const char kNetworkViewCacheURL[]; |
| 86 extern const char kNetworkViewInternalsURL[]; | 87 extern const char kNetworkViewInternalsURL[]; |
| 87 | 88 |
| 88 // Call near the beginning of startup to register Chrome's internal URLs that | 89 // Call near the beginning of startup to register Chrome's internal URLs that |
| 89 // should be parsed as "standard" with the googleurl library. | 90 // should be parsed as "standard" with the googleurl library. |
| 90 void RegisterChromeSchemes(); | 91 void RegisterChromeSchemes(); |
| 91 | 92 |
| 92 } // namespace chrome | 93 } // namespace chrome |
| 93 | 94 |
| 94 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 95 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |