| 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 | 9 |
| 10 namespace chrome { | 10 namespace chrome { |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 extern const char kChromeUIFavIconHost[]; | 77 extern const char kChromeUIFavIconHost[]; |
| 78 extern const char kChromeUIFileBrowseHost[]; | 78 extern const char kChromeUIFileBrowseHost[]; |
| 79 extern const char kChromeUIHistoryHost[]; | 79 extern const char kChromeUIHistoryHost[]; |
| 80 extern const char kChromeUIHistory2Host[]; | 80 extern const char kChromeUIHistory2Host[]; |
| 81 extern const char kChromeUIInspectorHost[]; | 81 extern const char kChromeUIInspectorHost[]; |
| 82 extern const char kChromeUIMediaplayerHost[]; | 82 extern const char kChromeUIMediaplayerHost[]; |
| 83 extern const char kChromeUINetInternalsHost[]; | 83 extern const char kChromeUINetInternalsHost[]; |
| 84 extern const char kChromeUINewTabHost[]; | 84 extern const char kChromeUINewTabHost[]; |
| 85 extern const char kChromeUIOptionsHost[]; | 85 extern const char kChromeUIOptionsHost[]; |
| 86 extern const char kChromeUIPluginsHost[]; | 86 extern const char kChromeUIPluginsHost[]; |
| 87 extern const char kChromeUIPrintHost[]; | 87 extern const char kChromeUIPrintPreviewHost[]; |
| 88 extern const char kChromeUIRemotingHost[]; | 88 extern const char kChromeUIRemotingHost[]; |
| 89 extern const char kChromeUIResourcesHost[]; | 89 extern const char kChromeUIResourcesHost[]; |
| 90 extern const char kChromeUISlideshowHost[]; | 90 extern const char kChromeUISlideshowHost[]; |
| 91 extern const char kChromeUIThumbnailPath[]; | 91 extern const char kChromeUIThumbnailPath[]; |
| 92 extern const char kChromeUIThemePath[]; | 92 extern const char kChromeUIThemePath[]; |
| 93 | 93 |
| 94 // Sync related URL components. | 94 // Sync related URL components. |
| 95 extern const char kSyncResourcesHost[]; | 95 extern const char kSyncResourcesHost[]; |
| 96 extern const char kSyncGaiaLoginPath[]; | 96 extern const char kSyncGaiaLoginPath[]; |
| 97 extern const char kSyncMergeAndSyncPath[]; | 97 extern const char kSyncMergeAndSyncPath[]; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 111 extern const char kNetworkViewCacheURL[]; | 111 extern const char kNetworkViewCacheURL[]; |
| 112 extern const char kNetworkViewInternalsURL[]; | 112 extern const char kNetworkViewInternalsURL[]; |
| 113 | 113 |
| 114 // Call near the beginning of startup to register Chrome's internal URLs that | 114 // Call near the beginning of startup to register Chrome's internal URLs that |
| 115 // should be parsed as "standard" with the googleurl library. | 115 // should be parsed as "standard" with the googleurl library. |
| 116 void RegisterChromeSchemes(); | 116 void RegisterChromeSchemes(); |
| 117 | 117 |
| 118 } // namespace chrome | 118 } // namespace chrome |
| 119 | 119 |
| 120 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 120 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |