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 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
441 extern const char kEnhancedPlaybackNotificationLearnMoreURL[]; | 441 extern const char kEnhancedPlaybackNotificationLearnMoreURL[]; |
442 #endif | 442 #endif |
443 | 443 |
444 // The URL for the Chromium project used in the About dialog. | 444 // The URL for the Chromium project used in the About dialog. |
445 extern const char kChromiumProjectURL[]; | 445 extern const char kChromiumProjectURL[]; |
446 | 446 |
447 // The URL for the "Learn more" page for the usage/crash reporting option in the | 447 // The URL for the "Learn more" page for the usage/crash reporting option in the |
448 // first run dialog. | 448 // first run dialog. |
449 extern const char kLearnMoreReportingURL[]; | 449 extern const char kLearnMoreReportingURL[]; |
450 | 450 |
451 #if defined(ENABLE_PLUGIN_INSTALLATION) | 451 #if BUILDFLAG(ENABLE_PLUGIN_INSTALLATION) |
452 // The URL for the "Learn more" page for the outdated plugin infobar. | 452 // The URL for the "Learn more" page for the outdated plugin infobar. |
453 extern const char kOutdatedPluginLearnMoreURL[]; | 453 extern const char kOutdatedPluginLearnMoreURL[]; |
454 #endif | 454 #endif |
455 | 455 |
456 // The URL for the "Learn more" page for the blocked plugin infobar. | 456 // The URL for the "Learn more" page for the blocked plugin infobar. |
457 extern const char kBlockedPluginLearnMoreURL[]; | 457 extern const char kBlockedPluginLearnMoreURL[]; |
458 | 458 |
459 // The URL for the "Learn more" page for hotword search voice trigger. | 459 // The URL for the "Learn more" page for hotword search voice trigger. |
460 extern const char kHotwordLearnMoreURL[]; | 460 extern const char kHotwordLearnMoreURL[]; |
461 | 461 |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
601 extern const char kChooserUsbOverviewURL[]; | 601 extern const char kChooserUsbOverviewURL[]; |
602 | 602 |
603 #if defined(OS_CHROMEOS) | 603 #if defined(OS_CHROMEOS) |
604 // The URL for EOL notification | 604 // The URL for EOL notification |
605 extern const char kEolNotificationURL[]; | 605 extern const char kEolNotificationURL[]; |
606 #endif | 606 #endif |
607 | 607 |
608 } // namespace chrome | 608 } // namespace chrome |
609 | 609 |
610 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 610 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |