| 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 <stddef.h> | 10 #include <stddef.h> |
| (...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 466 // The URL for the "Learn more" page for download scanning. | 466 // The URL for the "Learn more" page for download scanning. |
| 467 extern const char kDownloadScanningLearnMoreURL[]; | 467 extern const char kDownloadScanningLearnMoreURL[]; |
| 468 | 468 |
| 469 // The URL for the "Learn more" page for interrupted downloads. | 469 // The URL for the "Learn more" page for interrupted downloads. |
| 470 extern const char kDownloadInterruptedLearnMoreURL[]; | 470 extern const char kDownloadInterruptedLearnMoreURL[]; |
| 471 | 471 |
| 472 // The URL for the "Learn more" page on the sync setup dialog, when syncing | 472 // The URL for the "Learn more" page on the sync setup dialog, when syncing |
| 473 // everything. | 473 // everything. |
| 474 extern const char kSyncEverythingLearnMoreURL[]; | 474 extern const char kSyncEverythingLearnMoreURL[]; |
| 475 | 475 |
| 476 // The URL for information on how to use the app launcher. | |
| 477 extern const char kAppLauncherHelpURL[]; | |
| 478 | |
| 479 // The URL for the "Learn more" page on sync encryption. | 476 // The URL for the "Learn more" page on sync encryption. |
| 480 extern const char kSyncEncryptionHelpURL[]; | 477 extern const char kSyncEncryptionHelpURL[]; |
| 481 | 478 |
| 482 // The URL for the "Learn more" link when there is a sync error. | 479 // The URL for the "Learn more" link when there is a sync error. |
| 483 extern const char kSyncErrorsHelpURL[]; | 480 extern const char kSyncErrorsHelpURL[]; |
| 484 | 481 |
| 485 #if defined(OS_CHROMEOS) | 482 #if defined(OS_CHROMEOS) |
| 486 // The URL for the "Learn more" link for natural scrolling on ChromeOS. | 483 // The URL for the "Learn more" link for natural scrolling on ChromeOS. |
| 487 extern const char kNaturalScrollHelpURL[]; | 484 extern const char kNaturalScrollHelpURL[]; |
| 488 | 485 |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 593 extern const char kChooserUsbOverviewURL[]; | 590 extern const char kChooserUsbOverviewURL[]; |
| 594 | 591 |
| 595 #if defined(OS_CHROMEOS) | 592 #if defined(OS_CHROMEOS) |
| 596 // The URL for EOL notification | 593 // The URL for EOL notification |
| 597 extern const char kEolNotificationURL[]; | 594 extern const char kEolNotificationURL[]; |
| 598 #endif | 595 #endif |
| 599 | 596 |
| 600 } // namespace chrome | 597 } // namespace chrome |
| 601 | 598 |
| 602 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 599 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |