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[]; | |
99 extern const char kSyncSetupDonePath[]; | 98 extern const char kSyncSetupDonePath[]; |
100 extern const char kSyncSetupFlowPath[]; | 99 extern const char kSyncSetupFlowPath[]; |
101 extern const char kSyncThrobberPath[]; | 100 extern const char kSyncThrobberPath[]; |
102 | 101 |
103 // AppCache related URL. | 102 // AppCache related URL. |
104 extern const char kAppCacheViewInternalsURL[]; | 103 extern const char kAppCacheViewInternalsURL[]; |
105 | 104 |
106 // Cloud Print dialog URL components. | 105 // Cloud Print dialog URL components. |
107 extern const char kCloudPrintResourcesURL[]; | 106 extern const char kCloudPrintResourcesURL[]; |
108 extern const char kCloudPrintResourcesHost[]; | 107 extern const char kCloudPrintResourcesHost[]; |
109 | 108 |
110 // Network related URLs. | 109 // Network related URLs. |
111 extern const char kNetworkViewCacheURL[]; | 110 extern const char kNetworkViewCacheURL[]; |
112 extern const char kNetworkViewInternalsURL[]; | 111 extern const char kNetworkViewInternalsURL[]; |
113 | 112 |
114 // Call near the beginning of startup to register Chrome's internal URLs that | 113 // Call near the beginning of startup to register Chrome's internal URLs that |
115 // should be parsed as "standard" with the googleurl library. | 114 // should be parsed as "standard" with the googleurl library. |
116 void RegisterChromeSchemes(); | 115 void RegisterChromeSchemes(); |
117 | 116 |
118 } // namespace chrome | 117 } // namespace chrome |
119 | 118 |
120 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 119 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |