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