| 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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[]; |
| 98 extern const char kSyncChooseDataTypesPath[]; |
| 98 extern const char kSyncSetupDonePath[]; | 99 extern const char kSyncSetupDonePath[]; |
| 99 extern const char kSyncSetupFlowPath[]; | 100 extern const char kSyncSetupFlowPath[]; |
| 100 extern const char kSyncThrobberPath[]; | 101 extern const char kSyncThrobberPath[]; |
| 101 | 102 |
| 102 // AppCache related URL. | 103 // AppCache related URL. |
| 103 extern const char kAppCacheViewInternalsURL[]; | 104 extern const char kAppCacheViewInternalsURL[]; |
| 104 | 105 |
| 105 // Cloud Print dialog URL components. | 106 // Cloud Print dialog URL components. |
| 106 extern const char kCloudPrintResourcesURL[]; | 107 extern const char kCloudPrintResourcesURL[]; |
| 107 extern const char kCloudPrintResourcesHost[]; | 108 extern const char kCloudPrintResourcesHost[]; |
| 108 | 109 |
| 109 // Network related URLs. | 110 // Network related URLs. |
| 110 extern const char kNetworkViewCacheURL[]; | 111 extern const char kNetworkViewCacheURL[]; |
| 111 extern const char kNetworkViewInternalsURL[]; | 112 extern const char kNetworkViewInternalsURL[]; |
| 112 | 113 |
| 113 // 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 |
| 114 // should be parsed as "standard" with the googleurl library. | 115 // should be parsed as "standard" with the googleurl library. |
| 115 void RegisterChromeSchemes(); | 116 void RegisterChromeSchemes(); |
| 116 | 117 |
| 117 } // namespace chrome | 118 } // namespace chrome |
| 118 | 119 |
| 119 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 120 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |