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 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
286 | 286 |
287 // The URL for the "About Voice Recognition" menu item. | 287 // The URL for the "About Voice Recognition" menu item. |
288 extern const char kSpeechInputAboutURL[]; | 288 extern const char kSpeechInputAboutURL[]; |
289 | 289 |
290 // The URL for the "Learn more" page for register protocol handler infobars. | 290 // The URL for the "Learn more" page for register protocol handler infobars. |
291 extern const char kLearnMoreRegisterProtocolHandlerURL[]; | 291 extern const char kLearnMoreRegisterProtocolHandlerURL[]; |
292 | 292 |
293 // The URL for the "Learn more" page for sync setup on the personal stuff page. | 293 // The URL for the "Learn more" page for sync setup on the personal stuff page. |
294 extern const char kSyncLearnMoreURL[]; | 294 extern const char kSyncLearnMoreURL[]; |
295 | 295 |
| 296 // The URL for the "Learn more" page on the sync setup dialog, when syncing |
| 297 // everything. |
| 298 extern const char kSyncEverythingLearnMoreURL[]; |
| 299 |
| 300 // The URL for information on how to recover your password. |
| 301 extern const char kInvalidPasswordHelpURL[]; |
| 302 |
| 303 // The URL for information on what to do if you can't sign in to your Google |
| 304 // account. |
| 305 extern const char kCanNotAccessAccountURL[]; |
| 306 |
| 307 // The URL for the "Learn more" page on sync encryption. |
| 308 extern const char kSyncEncryptionHelpURL[]; |
| 309 |
| 310 // The URL to create a new Google account via sync. |
| 311 extern const char kSyncCreateNewAccountURL[]; |
| 312 |
296 // "Debug" pages which are dangerous and not for general consumption. | 313 // "Debug" pages which are dangerous and not for general consumption. |
297 extern const char* const kChromeDebugURLs[]; | 314 extern const char* const kChromeDebugURLs[]; |
298 extern int kNumberOfChromeDebugURLs; | 315 extern int kNumberOfChromeDebugURLs; |
299 | 316 |
300 // Canonical schemes you can use as input to GURL.SchemeIs(). | 317 // Canonical schemes you can use as input to GURL.SchemeIs(). |
301 extern const char kExtensionScheme[]; | 318 extern const char kExtensionScheme[]; |
302 | 319 |
303 // Call near the beginning of startup to register Chrome's internal URLs that | 320 // Call near the beginning of startup to register Chrome's internal URLs that |
304 // should be parsed as "standard" with the googleurl library. | 321 // should be parsed as "standard" with the googleurl library. |
305 void RegisterChromeSchemes(); | 322 void RegisterChromeSchemes(); |
306 | 323 |
307 #if defined(OS_CHROMEOS) | 324 #if defined(OS_CHROMEOS) |
308 // "Learn more" URL for the Cloud Print section under Options. | 325 // "Learn more" URL for the Cloud Print section under Options. |
309 extern const char kCloudPrintLearnMoreURL[]; | 326 extern const char kCloudPrintLearnMoreURL[]; |
310 #endif | 327 #endif |
311 | 328 |
312 } // namespace chrome | 329 } // namespace chrome |
313 | 330 |
314 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 331 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |