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 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 | 262 |
263 // The URL for the "Learn more" page for the blocked plugin infobar. | 263 // The URL for the "Learn more" page for the blocked plugin infobar. |
264 extern const char kBlockedPluginLearnMoreURL[]; | 264 extern const char kBlockedPluginLearnMoreURL[]; |
265 | 265 |
266 // The URL for the "About Voice Recognition" menu item. | 266 // The URL for the "About Voice Recognition" menu item. |
267 extern const char kSpeechInputAboutURL[]; | 267 extern const char kSpeechInputAboutURL[]; |
268 | 268 |
269 // The URL for the "Learn more" page for register protocol handler infobars. | 269 // The URL for the "Learn more" page for register protocol handler infobars. |
270 extern const char kLearnMoreRegisterProtocolHandlerURL[]; | 270 extern const char kLearnMoreRegisterProtocolHandlerURL[]; |
271 | 271 |
| 272 // The URL for the "Learn more" page for sync setup on the personal stuff page. |
| 273 extern const char kSyncLearnMoreURL[]; |
| 274 |
272 // "Debug" pages which are dangerous and not for general consumption. | 275 // "Debug" pages which are dangerous and not for general consumption. |
273 extern const char* const kChromeDebugURLs[]; | 276 extern const char* const kChromeDebugURLs[]; |
274 extern int kNumberOfChromeDebugURLs; | 277 extern int kNumberOfChromeDebugURLs; |
275 | 278 |
276 // Call near the beginning of startup to register Chrome's internal URLs that | 279 // Call near the beginning of startup to register Chrome's internal URLs that |
277 // should be parsed as "standard" with the googleurl library. | 280 // should be parsed as "standard" with the googleurl library. |
278 void RegisterChromeSchemes(); | 281 void RegisterChromeSchemes(); |
279 | 282 |
280 #if defined(OS_CHROMEOS) | 283 #if defined(OS_CHROMEOS) |
281 // "Learn more" URL for the Cloud Print section under Options. | 284 // "Learn more" URL for the Cloud Print section under Options. |
282 extern const char kCloudPrintLearnMoreURL[]; | 285 extern const char kCloudPrintLearnMoreURL[]; |
283 #endif | 286 #endif |
284 | 287 |
285 } // namespace chrome | 288 } // namespace chrome |
286 | 289 |
287 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 290 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |