OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "build/build_config.h" | 10 #include "build/build_config.h" |
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
368 // The URL for the "Learn more" page for interrupted downloads. | 368 // The URL for the "Learn more" page for interrupted downloads. |
369 extern const char kDownloadInterruptedLearnMoreURL[]; | 369 extern const char kDownloadInterruptedLearnMoreURL[]; |
370 | 370 |
371 // The URL for the "Learn more" page on the sync setup dialog, when syncing | 371 // The URL for the "Learn more" page on the sync setup dialog, when syncing |
372 // everything. | 372 // everything. |
373 extern const char kSyncEverythingLearnMoreURL[]; | 373 extern const char kSyncEverythingLearnMoreURL[]; |
374 | 374 |
375 // The URL for information on how to recover your password. | 375 // The URL for information on how to recover your password. |
376 extern const char kInvalidPasswordHelpURL[]; | 376 extern const char kInvalidPasswordHelpURL[]; |
377 | 377 |
| 378 // The URL for information on how to use the app launcher. |
| 379 extern const char kAppLauncherHelpURL[]; |
| 380 |
378 // The URL for information on what to do if you can't sign in to your Google | 381 // The URL for information on what to do if you can't sign in to your Google |
379 // account. | 382 // account. |
380 extern const char kCanNotAccessAccountURL[]; | 383 extern const char kCanNotAccessAccountURL[]; |
381 | 384 |
382 // The URL for the "Learn more" page on sync encryption. | 385 // The URL for the "Learn more" page on sync encryption. |
383 extern const char kSyncEncryptionHelpURL[]; | 386 extern const char kSyncEncryptionHelpURL[]; |
384 | 387 |
385 // The URL for the "Learn more" link when there is a sync error. | 388 // The URL for the "Learn more" link when there is a sync error. |
386 extern const char kSyncErrorsHelpURL[]; | 389 extern const char kSyncErrorsHelpURL[]; |
387 | 390 |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
447 // Parameters that get appended to force SafeSearch. | 450 // Parameters that get appended to force SafeSearch. |
448 extern const char kSafeSearchSafeParameter[]; | 451 extern const char kSafeSearchSafeParameter[]; |
449 extern const char kSafeSearchSsuiParameter[]; | 452 extern const char kSafeSearchSsuiParameter[]; |
450 | 453 |
451 // The URL for the "Learn more" link in the media access infobar. | 454 // The URL for the "Learn more" link in the media access infobar. |
452 extern const char kMediaAccessLearnMoreUrl[]; | 455 extern const char kMediaAccessLearnMoreUrl[]; |
453 | 456 |
454 } // namespace chrome | 457 } // namespace chrome |
455 | 458 |
456 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 459 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |