| 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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 extern const char kCloudPrintResourcesURL[]; | 155 extern const char kCloudPrintResourcesURL[]; |
| 156 extern const char kCloudPrintResourcesHost[]; | 156 extern const char kCloudPrintResourcesHost[]; |
| 157 extern const char kCloudPrintSetupHost[]; | 157 extern const char kCloudPrintSetupHost[]; |
| 158 | 158 |
| 159 // Network related URLs. | 159 // Network related URLs. |
| 160 extern const char kNetworkViewCacheURL[]; | 160 extern const char kNetworkViewCacheURL[]; |
| 161 extern const char kNetworkViewInternalsURL[]; | 161 extern const char kNetworkViewInternalsURL[]; |
| 162 | 162 |
| 163 // Sync related URLs. | 163 // Sync related URLs. |
| 164 extern const char kSyncViewInternalsURL[]; | 164 extern const char kSyncViewInternalsURL[]; |
| 165 extern const char kSyncGoogleDashboardURL[]; |
| 165 | 166 |
| 166 // GPU related URLs | 167 // GPU related URLs |
| 167 extern const char kGpuInternalsURL[]; | 168 extern const char kGpuInternalsURL[]; |
| 168 | 169 |
| 169 // Options sub-pages. | 170 // Options sub-pages. |
| 170 extern const char kAdvancedOptionsSubPage[]; | 171 extern const char kAdvancedOptionsSubPage[]; |
| 171 extern const char kAutofillSubPage[]; | 172 extern const char kAutofillSubPage[]; |
| 172 extern const char kBrowserOptionsSubPage[]; | 173 extern const char kBrowserOptionsSubPage[]; |
| 173 extern const char kClearBrowserDataSubPage[]; | 174 extern const char kClearBrowserDataSubPage[]; |
| 174 extern const char kContentSettingsSubPage[]; | 175 extern const char kContentSettingsSubPage[]; |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 // The URL for the "Learn more" page for the blocked plugin infobar. | 216 // The URL for the "Learn more" page for the blocked plugin infobar. |
| 216 extern const char kBlockedPluginLearnMoreURL[]; | 217 extern const char kBlockedPluginLearnMoreURL[]; |
| 217 | 218 |
| 218 // Call near the beginning of startup to register Chrome's internal URLs that | 219 // Call near the beginning of startup to register Chrome's internal URLs that |
| 219 // should be parsed as "standard" with the googleurl library. | 220 // should be parsed as "standard" with the googleurl library. |
| 220 void RegisterChromeSchemes(); | 221 void RegisterChromeSchemes(); |
| 221 | 222 |
| 222 } // namespace chrome | 223 } // namespace chrome |
| 223 | 224 |
| 224 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 225 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |