1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Contains constants for known URLs and portions thereof.
// Except for WebUI UI/Host/SubPage constants. Those go in
// chrome/common/webui_url_constants.h.
//
// - The constants are divided into sections: Cross platform, platform-specific,
// and feature-specific.
// - When adding platform/feature specific constants, if there already exists an
// appropriate #if block, use that.
// - Keep the constants sorted by name within its section.
#ifndef CHROME_COMMON_URL_CONSTANTS_H_
#define CHROME_COMMON_URL_CONSTANTS_H_
#include <stddef.h>
#include "build/branding_buildflags.h"
#include "build/build_config.h"
#include "chrome/common/buildflags.h"
#include "chrome/common/webui_url_constants.h"
#include "content/public/common/url_constants.h"
#include "net/net_buildflags.h"
#include "ppapi/buildflags/buildflags.h"
namespace chrome {
// "Learn more" URL linked in the dialog to cast using a code.
inline constexpr char kAccessCodeCastLearnMoreURL[] =
"https://support.google.com/chrome/a/?p=cast_to_class_teacher";
// "Learn more" URL for accessibility image labels, linked from the permissions
// dialog shown when a user enables the feature.
inline constexpr char kAccessibilityLabelsLearnMoreURL[] =
"https://support.google.com/chrome?p=image_descriptions";
// "Learn more" URL for Ad Privacy.
inline constexpr char kAdPrivacyLearnMoreURL[] =
"https://support.google.com/chrome?p=ad_privacy";
// "Learn more" URL for when profile settings are automatically reset.
inline constexpr char kAutomaticSettingsResetLearnMoreURL[] =
"https://support.google.com/chrome?p=ui_automatic_settings_reset";
// "Learn more" URL for Advanced Protection download warnings.
inline constexpr char kAdvancedProtectionDownloadLearnMoreURL[] =
"https://support.google.com/accounts/accounts?p=safe-browsing";
// "Chrome Settings" URL for website notifications linked out from OSSettings.
inline constexpr char kAppNotificationsBrowserSettingsURL[] =
"chrome://settings/content/notifications";
// "Chrome Settings" URL for the appearance page.
inline constexpr char kBrowserSettingsSearchEngineURL[] =
"chrome://settings/search";
// "Learn more" URL for App Parental Controls.
// char16_t is used here because this constant may be used to set the src
// attribute of iframe elements.
inline constexpr char16_t kAppParentalControlsLearnMoreUrl[] =
u"https://support.google.com/chromebook?p=local_app_controls";
// "Learn more" URL for Battery Saver Mode.
inline constexpr const char16_t kBatterySaverModeLearnMoreUrl[] =
u"https://support.google.com/chrome?p=chrome_battery_saver";
// The URL for providing help when the Bluetooth adapter is off.
inline constexpr char kBluetoothAdapterOffHelpURL[] =
"https://support.google.com/chrome?p=bluetooth";
// "Chrome Settings" URL for website camera access permissions.
inline constexpr char kBrowserCameraPermissionsSettingsURL[] =
"chrome://settings/content/camera";
// "Chrome Settings" URL for website location access permissions.
inline constexpr char kBrowserLocationPermissionsSettingsURL[] =
"chrome://settings/content/location";
// "Chrome Settings" URL for website microphone access permissions.
inline constexpr char kBrowserMicrophonePermissionsSettingsURL[] =
"chrome://settings/content/microphone";
// "Learn more" URL shown in the dialog to enable cloud services for Cast.
inline constexpr char kCastCloudServicesHelpURL[] =
"https://support.google.com/chromecast/?p=casting_cloud_services";
// The URL for the help center article to show when no Cast destination has been
// found.
inline constexpr char kCastNoDestinationFoundURL[] =
"https://support.google.com/chromecast/?p=no_cast_destination";
// The URL for the WebHID API help center article.
inline constexpr char kChooserHidOverviewUrl[] =
"https://support.google.com/chrome?p=webhid";
// The URL for the Web Serial API help center article.
inline constexpr char kChooserSerialOverviewUrl[] =
"https://support.google.com/chrome?p=webserial";
// The URL for the WebUsb help center article.
inline constexpr char kChooserUsbOverviewURL[] =
"https://support.google.com/chrome?p=webusb";
// Link to the forum for Chrome Beta.
inline constexpr char kChromeBetaForumURL[] =
"https://support.google.com/chrome?p=beta_forum";
// The URL for the help center article to fix Chrome update problems.
inline constexpr char16_t kChromeFixUpdateProblems[] =
u"https://support.google.com/chrome?p=fix_chrome_updates";
// General help links for Chrome, opened using various actions.
inline constexpr char kChromeHelpViaKeyboardURL[] =
#if BUILDFLAG(IS_CHROMEOS)
#if BUILDFLAG(GOOGLE_CHROME_BRANDING)
"chrome-extension://honijodknafkokifofgiaalefdiedpko/main.html";
#else
"https://support.google.com/chromebook?p=help&ctx=keyboard";
#endif // BUILDFLAG(GOOGLE_CHROME_BRANDING)
#else
"https://support.google.com/chrome?p=help&ctx=keyboard";
#endif // BUILDFLAG(IS_CHROMEOS)
inline constexpr char kChromeHelpViaMenuURL[] =
#if BUILDFLAG(IS_CHROMEOS)
#if BUILDFLAG(GOOGLE_CHROME_BRANDING)
"chrome-extension://honijodknafkokifofgiaalefdiedpko/main.html";
#else
"https://support.google.com/chromebook?p=help&ctx=menu";
#endif // BUILDFLAG(GOOGLE_CHROME_BRANDING)
#else
"https://support.google.com/chrome?p=help&ctx=menu";
#endif // BUILDFLAG(IS_CHROMEOS)
inline constexpr char kChromeHelpViaWebUIURL[] =
"https://support.google.com/chrome?p=help&ctx=settings";
#if BUILDFLAG(IS_CHROMEOS)
inline constexpr char kChromeOsHelpViaWebUIURL[] =
#if BUILDFLAG(GOOGLE_CHROME_BRANDING)
"chrome-extension://honijodknafkokifofgiaalefdiedpko/main.html";
#else
"https://support.google.com/chromebook?p=help&ctx=settings";
#endif // BUILDFLAG(GOOGLE_CHROME_BRANDING)
#endif // BUILDFLAG(IS_CHROMEOS)
// The isolated-app: scheme is used for Isolated Web Apps. A public explainer
// can be found here: https://github.com/reillyeon/isolated-web-apps
inline constexpr char kIsolatedAppScheme[] = "isolated-app";
inline constexpr char16_t kIsolatedAppSchemeUtf16[] = u"isolated-app";
// The chrome-native: scheme is used show pages rendered with platform specific
// widgets instead of using HTML.
inline constexpr char kChromeNativeScheme[] = "chrome-native";
// The URL of safe section in Chrome page (https://www.google.com/chrome).
inline constexpr char16_t kChromeSafePageURL[] =
u"https://www.google.com/chrome/#safe";
// Host and URL for most visited iframes used on the Instant Extended NTP.
inline constexpr char kChromeSearchMostVisitedHost[] = "most-visited";
inline constexpr char kChromeSearchMostVisitedUrl[] =
"chrome-search://most-visited/";
// URL for NTP custom background image selected from the user's machine and
// filename for the version of the file in the Profile directory
inline constexpr char kChromeUIUntrustedNewTabPageBackgroundUrl[] =
"chrome-untrusted://new-tab-page/background.jpg";
inline constexpr char kChromeUIUntrustedNewTabPageBackgroundFilename[] =
"background.jpg";
// Page under chrome-search.
inline constexpr char kChromeSearchRemoteNtpHost[] = "remote-ntp";
// The chrome-search: scheme is served by the same backend as chrome:. However,
// only specific URLDataSources are enabled to serve requests via the
// chrome-search: scheme. See |InstantIOContext::ShouldServiceRequest| and its
// callers for details. Note that WebUIBindings should never be granted to
// chrome-search: pages. chrome-search: pages are displayable but not readable
// by external search providers (that are rendered by Instant renderer
// processes), and neither displayable nor readable by normal (non-Instant) web
// pages. To summarize, a non-Instant process, when trying to access
// 'chrome-search://something', will bump up against the following:
//
// 1. Renderer: The display-isolated check in WebKit will deny the request,
// 2. Browser: Assuming they got by #1, the scheme checks in
// URLDataSource::ShouldServiceRequest will deny the request,
// 3. Browser: for specific sub-classes of URLDataSource, like ThemeSource
// there are additional Instant-PID checks that make sure the request is
// coming from a blessed Instant process, and deny the request.
inline constexpr char kChromeSearchScheme[] = "chrome-search";
// This is the base URL of content that can be embedded in chrome://new-tab-page
// using an <iframe>. The embedded untrusted content can make web requests and
// can include content that is from an external source.
inline constexpr char kChromeUIUntrustedNewTabPageUrl[] =
"chrome-untrusted://new-tab-page/";
// The URL for the Chromium project used in the About dialog.
inline constexpr char16_t kChromiumProjectURL[] = u"https://www.chromium.org/";
#if BUILDFLAG(GOOGLE_CHROME_BRANDING)
// The URL for the "Clear browsing data in Chrome" help center article.
inline constexpr char16_t kClearBrowsingDataHelpCenterURL[] =
u"https://support.google.com/chrome?p=delete_browsing_data";
#endif
inline constexpr char16_t kContentSettingsExceptionsLearnMoreURL[] =
u"https://support.google.com/chrome?p=settings_manage_exceptions";
// "Learn more" URL for cookies.
inline constexpr char kCookiesSettingsHelpCenterURL[] =
"https://support.google.com/chrome?p=cpn_cookies";
// "Learn more" URL for "Aw snap" page when showing "Reload" button.
inline constexpr char kCrashReasonURL[] =
#if BUILDFLAG(IS_CHROMEOS)
"https://support.google.com/chromebook?p=e_awsnap";
#else
"https://support.google.com/chrome?p=e_awsnap";
#endif
// "Learn more" URL for "Aw snap" page when showing "Send feedback" button.
inline constexpr char kCrashReasonFeedbackDisplayedURL[] =
#if BUILDFLAG(IS_CHROMEOS)
"https://support.google.com/chromebook?p=e_awsnap_rl";
#else
"https://support.google.com/chrome?p=e_awsnap_rl";
#endif
// "Learn more" URL for the inactive tabs appearance setting.
inline constexpr const char16_t kDiscardRingTreatmentLearnMoreUrl[] =
u"https://support.google.com/chrome?p=performance_personalization";
// "Learn more" URL for the "Do not track" setting in the privacy section.
inline constexpr char16_t kDoNotTrackLearnMoreURL[] =
#if BUILDFLAG(IS_CHROMEOS)
u"https://support.google.com/chromebook?p=settings_do_not_track";
#else
u"https://support.google.com/chrome?p=settings_do_not_track";
#endif
// The URL for the "Learn more" page for interrupted downloads.
inline constexpr char kDownloadInterruptedLearnMoreURL[] =
"https://support.google.com/chrome?p=ui_download_errors";
// The URL for the "Learn more" page for download scanning.
inline constexpr char kDownloadScanningLearnMoreURL[] =
"https://support.google.com/chrome?p=ib_download_blocked";
// The URL for the "Learn more" page for blocked downloads.
// Note: This is the same as the above URL. This is done to decouple the URLs,
// in case the support page is split apart into separate pages in the future.
inline constexpr char kDownloadBlockedLearnMoreURL[] =
"https://support.google.com/chrome?p=ib_download_blocked";
// "Learn more" URL for the Settings API, NTP bubble and other settings bubbles
// showing which extension is controlling them.
inline constexpr char kExtensionControlledSettingLearnMoreURL[] =
"https://support.google.com/chrome?p=ui_settings_api_extension";
// Link for creating family group with Google Families.
inline constexpr char16_t kFamilyGroupCreateURL[] =
u"https://myaccount.google.com/family/create?utm_source=cpwd";
// Link for viewing family group with Google Families.
inline constexpr char16_t kFamilyGroupViewURL[] =
u"https://myaccount.google.com/family/details?utm_source=cpwd";
// "Learn more" URL for related website sets.
inline constexpr char kRelatedWebsiteSetsLearnMoreURL[] =
"https://support.google.com/"
"chrome?p=cpn_cookies&rd=1#allow_block_cookies&zippy=%2Callow-or-block-"
"third-party-cookies%2Callow-related-sites-to-access-your-activity%2Cabout-"
"embedded-content";
// "Learn more" URL for Incognito tracking protections.
// TODO(crbug.com/408036586): Update learn more URL when finalized
inline constexpr char kIncognitoTrackingProtectionsLearnMoreUrl[] =
"https://support.google.com/chrome?p=incognito_tracking_protections";
// Url to a blogpost about Flash deprecation.
inline constexpr char kFlashDeprecationLearnMoreURL[] =
"https://blog.chromium.org/2017/07/so-long-and-thanks-for-all-flash.html";
// URL of the Google account language selection page.
inline constexpr char kGoogleAccountLanguagesURL[] =
"https://myaccount.google.com/language";
// URL of the 'Activity controls' section of the privacy settings page.
inline constexpr char kGoogleAccountActivityControlsURL[] =
"https://myaccount.google.com/activitycontrols/search";
// URL of the 'Activity controls' section of the privacy settings page, with
// privacy guide parameters and a link for users to manage data.
inline constexpr char kGoogleAccountActivityControlsURLInPrivacyGuide[] =
"https://myaccount.google.com/activitycontrols/"
"search&utm_source=chrome&utm_medium=privacy-guide";
// URL of the 'Linked services' section of the privacy settings page.
inline constexpr char kGoogleAccountLinkedServicesURL[] =
"https://myaccount.google.com/linked-services?utm_source=chrome_s";
// URL of the Google Account.
inline constexpr char kGoogleAccountURL[] = "https://myaccount.google.com";
// URL of the Google Account chooser.
inline constexpr char kGoogleAccountChooserURL[] =
"https://accounts.google.com/AccountChooser";
// URL of the Google Account page showing the known user devices.
inline constexpr char kGoogleAccountDeviceActivityURL[] =
"https://myaccount.google.com/device-activity?utm_source=chrome";
// URL of the Google Account home address page.
inline constexpr char kGoogleAccountHomeAddressURL[] =
"https://myaccount.google.com/address/"
"home?utm_source=chrome&utm_campaign=manage_addresses";
// URL of the Google Account work address page.
inline constexpr char kGoogleAccountWorkAddressURL[] =
"https://myaccount.google.com/address/"
"work?utm_source=chrome&utm_campaign=manage_addresses";
// URL of the two factor authentication setup required intersitial.
inline constexpr char kGoogleTwoFactorIntersitialURL[] =
"https://myaccount.google.com/interstitials/twosvrequired";
// URL of the Google Password Manager.
inline constexpr char kGooglePasswordManagerURL[] =
"https://passwords.google.com";
// URL of the Google Photos.
inline constexpr char kGooglePhotosURL[] = "https://photos.google.com";
// The URL for the "Learn more" link for the Memory Saver Mode.
inline constexpr const char16_t kMemorySaverModeLearnMoreUrl[] =
u"https://support.google.com/chrome?p=chrome_memory_saver";
// The URL in the help text for the Memory Saver Mode tab discarding
// exceptions add dialog.
inline constexpr char16_t kMemorySaverModeTabDiscardingHelpUrl[] =
u"https://support.google.com/chrome?p=performance_site_exclusion";
// The URL to the help center article of Incognito mode.
inline constexpr char16_t kIncognitoHelpCenterURL[] =
u"https://support.google.com/chrome?p=incognito";
// The URL for the Help Center page about IP Protection.
inline constexpr char kIpProtectionHelpCenterURL[] =
"https://support.google.com/chrome?p=ip_protection";
// The URL for "Learn more" page for Isolated Web Apps.
// TODO(crbug.com/40281470): Update this URL with proper user-facing explainer.
inline constexpr char16_t kIsolatedWebAppsLearnMoreUrl[] =
u"https://github.com/WICG/isolated-web-apps/blob/main/README.md";
// The URL for the "Learn more" page for the usage/crash reporting option in the
// first run dialog.
inline constexpr char kLearnMoreReportingURL[] =
"https://support.google.com/chrome?p=ui_usagestat";
// The URL for the Help Center page about managing third-party cookies.
inline constexpr char kManage3pcHelpCenterURL[] =
"https://support.google.com/chrome?p=manage_tp_cookies";
// The URL for the tab group sync help center page.
inline constexpr char kTabGroupsLearnMoreURL[] =
"https://support.google.com/chrome?p=desktop_tab_groups";
// The URL for the Learn More page about policies and enterprise enrollment.
inline constexpr char16_t kManagedUiLearnMoreUrl[] =
#if BUILDFLAG(IS_CHROMEOS)
u"https://support.google.com/chromebook?p=is_chrome_managed";
#else
u"https://support.google.com/chrome?p=is_chrome_managed";
#endif
// The URL for the "Learn more" page for insecure download blocking.
inline constexpr char kInsecureDownloadBlockingLearnMoreUrl[] =
"https://support.google.com/chrome?p=mixed_content_downloads";
// "myactivity.google.com" URL for the history checkbox in ClearBrowsingData.
inline constexpr char16_t kMyActivityUrlInClearBrowsingData[] =
u"https://myactivity.google.com/myactivity?utm_source=chrome_cbd";
// Help URL for the Omnibox setting.
inline constexpr char16_t kOmniboxLearnMoreURL[] =
#if BUILDFLAG(IS_CHROMEOS)
u"https://support.google.com/chromebook?p=settings_omnibox";
#else
u"https://support.google.com/chrome?p=settings_omnibox";
#endif
// "What do these mean?" URL for the Page Info bubble.
inline constexpr char kPageInfoHelpCenterURL[] =
#if BUILDFLAG(IS_CHROMEOS)
"https://support.google.com/chromebook?p=ui_security_indicator";
#else
"https://support.google.com/chrome?p=ui_security_indicator";
#endif
// Help URL for the bulk password check.
inline constexpr char kPasswordCheckLearnMoreURL[] =
#if BUILDFLAG(IS_CHROMEOS)
"https://support.google.com/chromebook/"
"?p=settings_password#leak_detection_privacy";
#else
"https://support.google.com/chrome/"
"?p=settings_password#leak_detection_privacy";
#endif
// Help URL for password generation.
inline constexpr char kPasswordGenerationLearnMoreURL[] =
"https://support.google.com/chrome?p=generate_password";
inline constexpr char16_t kPasswordManagerLearnMoreURL[] =
#if BUILDFLAG(IS_CHROMEOS)
u"https://support.google.com/chromebook?p=settings_password";
#else
u"https://support.google.com/chrome?p=settings_password";
#endif
// Help URL for passwords import.
inline constexpr char kPasswordManagerImportLearnMoreURL[] =
"https://support.google.com/chrome?p=import-passwords-desktop";
// Help URL for password sharing.
inline constexpr char kPasswordSharingLearnMoreURL[] =
"https://support.google.com/chrome?p=password_sharing";
// Help URL for troubleshooting password sharing.
inline constexpr char kPasswordSharingTroubleshootURL[] =
"https://support.google.com/chrome?p=password_sharing_troubleshoot";
// The URL for the "Fill out forms automatically" support page.
inline constexpr char kAddressesAndPaymentMethodsLearnMoreURL[] =
#if BUILDFLAG(IS_CHROMEOS)
"https://support.google.com/chromebook?p=settings_autofill";
#else
"https://support.google.com/chrome?p=settings_autofill";
#endif
// The URL for the "Pay over time" support page.
// TODO(crbug.com/395027230): Change URL once official support page is
// finalized.
inline constexpr char16_t kPayOverTimeLearnMoreUrl[] =
u"https://support.google.com/googlepay?p=bnpl_autofill_chrome";
// Help URL for Autofill AI.
inline constexpr char16_t kAutofillAiLearnMoreURL[] =
u"https://support.google.com/chrome?p=autofill_ai";
// "Learn more" URL for the autofill show card benefits setting.
inline constexpr char16_t kCardBenefitsLearnMoreURL[] =
u"https://support.google.com/googlepay?p=card_benefits_chrome";
// "Learn more" URL for the performance intervention notification setting.
inline constexpr const char16_t kPerformanceInterventionLearnMoreUrl[] =
u"https://support.google.com/chrome?p=performance_personalization";
// "Learn more" URL for the preloading section in Performance settings.
inline constexpr const char16_t kPreloadingLearnMoreUrl[] =
u"https://support.google.com/chrome/?p=performance_preload_pages";
// "Learn more" URL for the Privacy section under Options.
inline constexpr char kPrivacyLearnMoreURL[] =
#if BUILDFLAG(IS_CHROMEOS)
"https://support.google.com/chromebook?p=settings_privacy";
#else
"https://support.google.com/chrome?p=settings_privacy";
#endif
// "Chrome Settings" URL for Ad Topics page
inline constexpr char kPrivacySandboxAdTopicsURL[] =
"chrome://settings/adPrivacy/interests";
// "Chrome Settings" URL for Managing Topics page
inline constexpr char kPrivacySandboxManageTopicsURL[] =
"chrome://settings/adPrivacy/interests/manage";
#if BUILDFLAG(GOOGLE_CHROME_BRANDING)
// The Privacy Sandbox homepage.
inline constexpr char16_t kPrivacySandboxURL[] =
u"https://www.privacysandbox.com/";
#endif
// The URL for the Learn More link of the non-CWS bubble.
inline constexpr char kRemoveNonCWSExtensionURL[] =
"https://support.google.com/chrome?p=ui_remove_non_cws_extensions";
// "Learn more" URL for resetting profile preferences.
inline constexpr char kResetProfileSettingsLearnMoreURL[] =
"https://support.google.com/chrome?p=ui_reset_settings";
// "Learn more" URL for Safebrowsing
inline constexpr char kSafeBrowsingHelpCenterURL[] =
"https://support.google.com/chrome?p=cpn_safe_browsing";
// Updated "Info icon" URL for Safebrowsing
inline constexpr char kSafeBrowsingHelpCenterUpdatedURL[] =
"https://support.google.com/chrome?p=safe_browsing_preferences";
// "Learn more" URL for Enhanced Protection
inline constexpr char16_t kSafeBrowsingInChromeHelpCenterURL[] =
u"https://support.google.com/chrome?p=safebrowsing_in_chrome";
// The URL for Safe Browsing link in Safety Check page.
inline constexpr char16_t kSafeBrowsingUseInChromeURL[] =
u"https://support.google.com/chrome/answer/9890866";
// "Learn more" URL for Safety Check page.
inline constexpr char16_t kSafetyHubHelpCenterURL[] =
u"https://support.google.com/chrome?p=safety_check";
// "Learn more" URL for safety tip bubble.
inline constexpr char kSafetyTipHelpCenterURL[] =
"https://support.google.com/chrome?p=safety_tip";
// Google search history URL that leads users of the CBD dialog to their search
// history in their Google account.
inline constexpr char16_t kSearchHistoryUrlInClearBrowsingData[] =
u"https://myactivity.google.com/product/search?utm_source=chrome_cbd";
// The URL for the "See more security tips" with advices how to create a strong
// password.
inline constexpr char kSeeMoreSecurityTipsURL[] =
"https://support.google.com/accounts/answer/32040";
// Help URL for the settings page's search feature.
inline constexpr char16_t kSettingsSearchHelpURL[] =
u"https://support.google.com/chrome?p=settings_search_help";
// The URL for the Learn More page about Sync and Google services.
inline constexpr char kSyncAndGoogleServicesLearnMoreURL[] =
"https://support.google.com/chrome?p=syncgoogleservices";
// The URL for the "Learn more" page on sync encryption.
inline constexpr char16_t kSyncEncryptionHelpURL[] =
#if BUILDFLAG(IS_CHROMEOS)
u"https://support.google.com/chromebook?p=settings_encryption";
#else
u"https://support.google.com/chrome?p=settings_encryption";
#endif
// The URL for the "Learn more" link when there is a sync error.
inline constexpr char kSyncErrorsHelpURL[] =
"https://support.google.com/chrome?p=settings_sync_error";
inline constexpr char kSyncGoogleDashboardURL[] =
"https://www.google.com/settings/chrome/sync";
// The URL for the "Learn more" page for sync setup on the personal stuff page.
inline constexpr char16_t kSyncLearnMoreURL[] =
u"https://support.google.com/chrome?p=settings_sign_in";
// The URL for the "Learn more" page for signing in to chrome with expanded
// section on "Sign in and turn on sync" in the Computer/Desktop tab.
inline constexpr char kSigninOnDesktopLearnMoreURL[] =
"https://support.google.com/"
"chrome?p=settings_sign_in#zippy=sign-in-turn-on-sync";
// The URL for the "Learn more" page for adding a new profile to Chrome.
inline constexpr char kAddNewProfileOnDesktopLearnMoreURL[] =
"https://support.google.com/chrome/?p=add_profile";
// The URL for the "Learn more" page for AI settings for managed users.
inline constexpr char16_t kAiSettingsLearnMorePageManagedUrl[] =
u"https://support.google.com/chrome/a?p=generative_ai_settings";
// The URL for the "Learn more" page for Help me Write.
inline constexpr char kComposeLearnMorePageURL[] =
"https://support.google.com/chrome?p=help_me_write";
// The URL for the "Learn more" page for Help me Write for managed users.
inline constexpr char kComposeLearnMorePageManagedURL[] =
"https://support.google.com/chrome/a?p=help_me_write_settings";
// The URL for the "Learn more" links for pages related to History search.
inline constexpr char kHistorySearchLearnMorePageURL[] =
"https://support.google.com/chrome?p=ai_history_search";
// The URL for the "Learn more" links for pages related to History search for
// managed users.
inline constexpr char kHistorySearchLearnMorePageManagedURL[] =
"https://support.google.com/chrome/a?p=search_history";
// The URL for the Settings page to enable history search.
inline constexpr char16_t kHistorySearchSettingURL[] =
u"chrome://settings/ai/historySearch";
// The URL for the "Learn more" page for Wallpaper Search.
inline constexpr char kWallpaperSearchLearnMorePageURL[] =
"https://support.google.com/chrome?p=create_themes_with_ai";
// The URL for the "Learn more" page for Tab Organization.
inline constexpr char kTabOrganizationLearnMorePageURL[] =
"https://support.google.com/chrome?p=auto_tab_group";
// The URL for the "Learn more" page for Tab Organization for managed users.
inline constexpr char kTabOrganizationLearnMorePageManagedURL[] =
"https://support.google.com/chrome/a?p=tab_organizer_settings";
// The URL for the "Learn more" link in the enterprise disclaimer for managed
// profile in the Signin Intercept bubble.
inline constexpr char kSigninInterceptManagedDisclaimerLearnMoreURL[] =
"https://support.google.com/chrome/a/?p=profile_separation";
#if !BUILDFLAG(IS_ANDROID)
// The URL for the trusted vault sync passphrase opt in.
inline constexpr char kSyncTrustedVaultOptInURL[] =
"https://passwords.google.com/encryption/enroll?"
"utm_source=chrome&utm_medium=desktop&utm_campaign=encryption_enroll";
#endif
// The URL for the "Learn more" link for the trusted vault sync passphrase.
inline constexpr char kSyncTrustedVaultLearnMoreURL[] =
"https://support.google.com/accounts?p=settings_password_ode";
// The URL for the Help Center page about User Bypass.
inline constexpr char16_t kUserBypassHelpCenterURL[] =
u"https://support.google.com/chrome?p=pause_protections";
inline constexpr char kUpgradeHelpCenterBaseURL[] =
"https://support.google.com/installer/?product="
"{8A69D345-D564-463c-AFF1-A69D9E530F96}&error=";
// The URL for the "Learn more" link for nearby share.
inline constexpr char16_t kNearbyShareLearnMoreURL[] =
u"https://support.google.com/chromebook?p=nearby_share";
// Help center URL for who the account administrator is.
inline constexpr char16_t kWhoIsMyAdministratorHelpURL[] =
u"https://support.google.com/chrome?p=your_administrator";
// The URL for the "Learn more" link about CWS Enhanced Safe Browsing.
inline constexpr char16_t kCwsEnhancedSafeBrowsingLearnMoreURL[] =
u"https://support.google.com/chrome?p=cws_enhanced_safe_browsing";
// The URL path to Google's Privacy Policy page.
inline constexpr char kPrivacyPolicyURL[] =
"https://policies.google.com/privacy";
// The URL path to Google's Privacy Policy page for users in China.
inline constexpr char kPrivacyPolicyURLChina[] =
"https://policies.google.cn/privacy";
// The URL path to Google's Embedded Privacy Policy page.
inline constexpr char kPrivacyPolicyOnlineURLPath[] =
"https://policies.google.com/privacy/embedded";
// The URL path to Google's Embedded Privacy Policy page for users in China.
inline constexpr char kPrivacyPolicyEmbeddedURLPathChina[] =
"https://policies.google.cn/privacy/embedded";
#if BUILDFLAG(IS_ANDROID) || BUILDFLAG(IS_CHROMEOS)
// "Learn more" URL for the enhanced playback notification dialog.
inline constexpr char kEnhancedPlaybackNotificationLearnMoreURL[] =
#if BUILDFLAG(IS_CHROMEOS)
"https://support.google.com/chromebook?p=enhanced_playback";
#else
// Keep in sync with
// chrome/browser/ui/android/strings/android_chrome_strings.grd
"https://support.google.com/chrome?p=mobile_protected_content";
#endif
#endif
#if BUILDFLAG(IS_CHROMEOS)
// Chrome OS default pre-defined custom handlers
inline constexpr char kChromeOSDefaultMailtoHandler[] =
"https://mail.google.com/mail/?extsrc=mailto&url=%s";
inline constexpr char kChromeOSDefaultWebcalHandler[] =
"https://www.google.com/calendar/render?cid=%s";
// Help center URL for Chrome OS Account Manager.
inline constexpr char kAccountManagerLearnMoreURL[] =
"https://support.google.com/chromebook?p=google_accounts";
// The URL for the "Account recovery" page.
inline constexpr char kAccountRecoveryURL[] =
"https://accounts.google.com/signin/recovery";
// The URL for the "How to add a new user account on a Chromebook" page.
inline constexpr char16_t kAddNewUserURL[] =
u"https://www.google.com/chromebook/howto/add-another-account";
// The URL for the "learn more" link for Google Play Store (ARC) settings.
inline constexpr char kAndroidAppsLearnMoreURL[] =
"https://support.google.com/chromebook?p=playapps";
// Help center URL for ARC ADB sideloading.
inline constexpr char16_t kArcAdbSideloadingLearnMoreURL[] =
u"https://support.google.com/chromebook?p=develop_android_apps";
// The URL for the "Learn more" link in the External storage preferences
// settings.
inline constexpr char16_t kArcExternalStorageLearnMoreURL[] =
u"https://support.google.com/chromebook?p=open_files";
// The path format to the localized offline ARC++ Privacy Policy.
// Relative to |kChromeOSAssetPath|.
inline constexpr char kArcPrivacyPolicyPathFormat[] =
"arc_tos/%s/privacy_policy.pdf";
// The path format to the localized offline ARC++ Terms of Service.
// Relative to |kChromeOSAssetPath|.
inline constexpr char kArcTermsPathFormat[] = "arc_tos/%s/terms.html";
// Help center URL for ChromeOS Battery Saver.
inline constexpr char kCrosBatterySaverLearnMoreURL[] =
"https://support.google.com/chromebook/?p=battery_saver";
// The URL for the "Learn more" link during Bluetooth pairing.
// TODO(crbug.com/1010321): Remove 'm100' prefix from link once Bluetooth Revamp
// has shipped.
inline constexpr char16_t kBluetoothPairingLearnMoreUrl[] =
u"https://support.google.com/chromebook?p=bluetooth_revamp_m100";
// Accessibility help link for Chrome.
inline constexpr char kChromeAccessibilityHelpURL[] =
"https://support.google.com/chromebook/topic/6323347";
inline constexpr char kChromeOSAssetHost[] = "chromeos-asset";
inline constexpr char kChromeOSAssetPath[] = "/usr/share/chromeos-assets/";
// Source for chrome://os-credits. On some devices, this will be compressed.
// Check both.
inline constexpr char kChromeOSCreditsPath[] =
"/opt/google/chrome/resources/about_os_credits.html";
inline constexpr char kChromeOSCreditsCompressedPath[] =
"/opt/google/chrome/resources/about_os_credits.html.gz";
// Chrome OS tablet gestures education help link for Chrome.
// TODO(carpenterr): Have a solution for plink mapping in Help App.
// The magic numbers in this url are the topic and article ids currently
// required to navigate directly to a help article in the Help App.
inline constexpr char kChromeOSGestureEducationHelpURL[] =
"chrome://help-app/help/sub/3399710/id/9739838";
// Palette help link for Chrome.
inline constexpr char kChromePaletteHelpURL[] =
"https://support.google.com/chromebook?p=stylus_help";
inline constexpr char kCupsPrintLearnMoreURL[] =
"https://support.google.com/chromebook?p=chromebook_printing";
inline constexpr char kCupsPrintPPDLearnMoreURL[] =
"https://support.google.com/chromebook?p=printing_advancedconfigurations";
// The URL for the "Learn more" link the the Easy Unlock settings.
inline constexpr char kEasyUnlockLearnMoreUrl[] =
"https://support.google.com/chromebook?p=smart_lock";
// The URL for the help center article about redeeming Chromebook offers.
inline constexpr char kEchoLearnMoreURL[] =
"chrome://help-app/help/sub/3399709/id/2703646";
// The URL for EOL notification
inline constexpr char16_t kEolNotificationURL[] =
u"https://www.google.com/chromebook/older/";
// The URL for the EOL incentive with offer.
inline constexpr char kEolIncentiveNotificationOfferURL[] =
"https://www.google.com/chromebook/renew-chromebook-offer";
// The URL for the EOL incentive with no offer.
inline constexpr char kEolIncentiveNotificationNoOfferURL[] =
"https://www.google.com/chromebook/renew-chromebook";
// The URL for Auto Update Policy.
inline constexpr char16_t kAutoUpdatePolicyURL[] =
u"https://support.google.com/chrome/a?p=auto-update-policy";
// The URL for providing more information about Google nameservers.
inline constexpr char kGoogleNameserversLearnMoreURL[] =
"https://developers.google.com/speed/public-dns";
// The URL for the "learn more" link for Instant Tethering.
inline constexpr char kInstantTetheringLearnMoreURL[] =
"https://support.google.com/chromebook?p=instant_tethering";
// The URL for the "learn more" link for Chromebook hotspot.
inline constexpr char kChromebookHotspotLearnMoreURL[] =
"https://support.google.com/chromebook?p=chromebook_hotspot";
// The URL for the "learn more" link for cellular carrier lock.
// TODO(b/293463820): Replace the link with carrier lock link once ready.
inline constexpr char kCellularCarrierLockLearnMoreURL[] =
"https://support.google.com/chromebook";
// The URL for the "Learn more" link for Kerberos accounts.
inline constexpr char kKerberosAccountsLearnMoreURL[] =
"https://support.google.com/chromebook?p=kerberos_accounts";
// The URL for the "Learn more" link in the language settings.
inline constexpr char16_t kLanguageSettingsLearnMoreUrl[] =
u"https://support.google.com/chromebook?p=order_languages";
// The URL for the "Learn more" link in language settings regarding language
// packs.
inline constexpr char16_t kLanguagePacksLearnMoreURL[] =
u"https://support.google.com/chromebook?p=language_packs";
// The URL for the Learn More page about enterprise enrolled devices.
inline constexpr char kLearnMoreEnterpriseURL[] =
"https://support.google.com/chromebook?p=managed";
// The URL for the Learn More page about Linux for Chromebooks.
inline constexpr char kLinuxAppsLearnMoreURL[] =
"https://support.google.com/chromebook?p=chromebook_linuxapps";
// The URL for the "Learn more" link for natural scrolling on ChromeOS.
inline constexpr char kNaturalScrollHelpURL[] =
"https://support.google.com/chromebook?p=simple_scrolling";
// The URL for the "Learn more" link for scrolling acceleration on ChromeOS.
// TODO(zhangwenyu): Update link once confirmed.
inline constexpr char kControlledScrollingHelpURL[] =
"https://support.google.com/chromebook?p=simple_scrolling";
// The URL for the "Learn more" link for touchpad haptic feedback on Chrome OS.
inline constexpr char kHapticFeedbackHelpURL[] =
"https://support.google.com/chromebook?p=haptic_feedback_m100";
// The URL path to offline OEM EULA.
inline constexpr char kOemEulaURLPath[] = "oem";
inline constexpr char kOrcaSuggestionLearnMoreURL[] =
"https://support.google.com/chromebook?p=copyeditor";
// Help URL for the OS settings page's search feature.
inline constexpr char kOsSettingsSearchHelpURL[] =
"https://support.google.com/chromebook?p=settings_search_help";
// The URL for the "Learn more" link in the peripheral data access protection
// settings.
inline constexpr char kPeripheralDataAccessHelpURL[] =
"https://support.google.com/chromebook?p=connect_thblt_usb4_accy";
// The URL for the "Learn more" link for Enhanced network voices in Chrome OS
// settings for Select-to-speak.
inline constexpr char kSelectToSpeakLearnMoreURL[] =
"https://support.google.com/chromebook?p=select_to_speak";
// The URL path to offline ARC++ Terms of Service.
inline constexpr char kArcTermsURLPath[] = "arc/terms";
// The URL path to offline ARC++ Privacy Policy.
inline constexpr char kArcPrivacyPolicyURLPath[] = "arc/privacy_policy";
// The URL path to Online Google EULA.
inline constexpr char kGoogleEulaOnlineURLPath[] =
"https://policies.google.com/terms/embedded?hl=%s";
// The URL path to Online Chrome and Chrome OS terms of service.
inline constexpr char kCrosEulaOnlineURLPath[] =
"https://www.google.com/intl/%s/chrome/terms/";
// The URL path to online ARC++ terms of service.
inline constexpr char kArcTosOnlineURLPath[] =
"https://play.google/play-terms/embedded/";
// The URL for the "learn more" link for TPM firmware update.
inline constexpr char kTPMFirmwareUpdateLearnMoreURL[] =
"https://support.google.com/chromebook?p=tpm_update";
// The URL for the "Learn more" page for the time zone settings page.
inline constexpr char kTimeZoneSettingsLearnMoreURL[] =
"https://support.google.com/chromebook?p=chromebook_timezone&hl=%s";
// The URL for the "Learn more" page for screen privacy protections.
inline constexpr char kSmartPrivacySettingsLearnMoreURL[] =
"https://support.google.com/chromebook?p=screen_privacy_m100";
// The URL for the "Learn more" page for the network file shares settings page.
inline constexpr char kSmbSharesLearnMoreURL[] =
"https://support.google.com/chromebook?p=network_file_shares";
// The URL for the "Learn more" page when the user tries to clean up their
// Google Drive offline storage in the OS settings page.
inline constexpr char kGoogleDriveCleanUpStorageLearnMoreURL[] =
"https://support.google.com/chromebook?p=cleanup_offline_files";
inline constexpr char kGoogleDriveOfflineLearnMoreURL[] =
"https://support.google.com/chromebook?p=my_drive_cbx";
// The URL for the "Learn more" page for Speak-on-mute Detection in the privacy
// hub page.
inline constexpr char kSpeakOnMuteDetectionLearnMoreURL[] =
"https://support.google.com/chromebook?p=mic-mute";
// The URL for the "Learn more" page for the geolocation area in the privacy
// hub page.
inline constexpr char kPrivacyHubGeolocationLearnMoreURL[] =
"https://support.google.com/chromebook/?p=manage_your_location";
// The URL for the "Learn more" page for the Location Accuracy setting under the
// privacy hub location subpage.
inline constexpr char16_t kPrivacyHubGeolocationAccuracyLearnMoreURL[] =
u"https://support.google.com/android/?p=location_accuracy";
// The URL for the "Learn more" page for Suggested Content in the privacy page.
inline constexpr char kSuggestedContentLearnMoreURL[] =
"https://support.google.com/chromebook?p=explorecontent";
// The URL to a support article with more information about gestures available
// in tablet mode on Chrome OS (gesture to go to home screen, overview, or to go
// back). Used as a "Learn more" link URL for the accessibility option to shelf
// navigation buttons in tablet mode (the buttons are hidden by default in
// favour of the gestures in question).
inline constexpr char kTabletModeGesturesLearnMoreURL[] =
"https://support.google.com/chromebook?p=tablet_mode_gestures";
// The URL for the help center article about video chat enhanced features.
inline constexpr char kVcLearnMoreURL[] =
"https://support.google.com/chromebook/answer/10264237"
"#zippy=enhanced-features-available-on-chromebook-plus";
// The URL for the help center article about Wi-Fi sync.
inline constexpr char kWifiSyncLearnMoreURL[] =
"https://support.google.com/chromebook?p=wifisync";
// The URL for the help center article about hidden Wi-Fi networks.
inline constexpr char kWifiHiddenNetworkURL[] =
"https://support.google.com/chromebook?p=hidden_networks";
// The URL for the help center article about Passpoint.
inline constexpr char kWifiPasspointURL[] =
"https://support.google.com/chromebook?p=wifi_passpoint";
// The URL for contacts management in Nearby Share feature.
inline constexpr char16_t kNearbyShareManageContactsURL[] =
u"https://contacts.google.com";
// The URL for the help center article about fingerprint on Chrome OS devices.
inline constexpr char kFingerprintLearnMoreURL[] =
"https://support.google.com/chromebook?p=chromebook_fingerprint";
// The URL for the help center article about local data recovery on Chrome OS
// devices.
inline constexpr char kRecoveryLearnMoreURL[] =
"https://support.google.com/chromebook?p=local_data_recovery";
// The URL for the learn more link about extended automatic updates for
// ChromeOS devices.
inline constexpr char16_t kDeviceExtendedUpdatesLearnMoreURL[] =
u"https://www.google.com/chromebook/autoupdates-opt-in/";
// The URL for the YoutTube Music Premium signup page.
inline constexpr char kYoutubeMusicPremiumURL[] =
"https://music.youtube.com/music_premium";
// The URL for the Chromebook Perks page for YouTube.
inline constexpr char kChromebookPerksYouTubePage[] =
"https://www.google.com/chromebook/perks/?id=youtube.2020";
// The URL for the "Learn more" page for the Face control feature on Chrome OS.
inline constexpr char kFaceGazeLearnMoreURL[] =
"https://support.google.com/chromebook?p=face_control";
#endif // BUILDFLAG(IS_CHROMEOS)
#if BUILDFLAG(IS_MAC)
// "Learn more" URL for the enterprise sign-in confirmation dialog.
inline constexpr char kChromeEnterpriseSignInLearnMoreURL[] =
"https://support.google.com/chromebook?p=is_chrome_managed";
// The URL for the "learn more" link on the macOS version obsolescence infobar.
inline constexpr char kMacOsObsoleteURL[] =
"https://support.google.com/chrome?p=unsupported_mac";
#endif
#if BUILDFLAG(IS_WIN)
// The URL for the Windows XP/Vista deprecation help center article.
inline constexpr char kWindowsXPVistaDeprecationURL[] =
"https://chrome.blogspot.com/2015/11/"
"updates-to-chrome-platform-support.html";
// The URL for the Windows 7/8.1 deprecation help center article.
inline constexpr char kWindows78DeprecationURL[] =
"https://support.google.com/chrome?p=unsupported_windows";
#endif
// "Learn more" URL for the one click signin infobar.
inline constexpr char kChromeSyncLearnMoreURL[] =
"https://support.google.com/chrome?p=chrome_sync";
#if BUILDFLAG(ENABLE_PLUGINS)
// The URL for the "Learn more" page for the outdated plugin infobar.
inline constexpr char kOutdatedPluginLearnMoreURL[] =
"https://support.google.com/chrome?p=ib_outdated_plugin";
#endif
// "Learn more" URL for the phone hub notifications and apps access setup.
// TODO (b/184137843): Use real link to phone hub notifications and apps access.
inline constexpr char kPhoneHubPermissionLearnMoreURL[] =
"https://support.google.com/chromebook?p=multidevice";
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX)
// "Learn more" URL for the chrome apps deprecation dialog.
inline constexpr char kChromeAppsDeprecationLearnMoreURL[] =
"https://support.google.com/chrome?p=chrome_app_deprecation";
#endif
#if BUILDFLAG(CHROME_ROOT_STORE_SUPPORTED)
inline constexpr char kChromeRootStoreSettingsHelpCenterURL[] =
"https://support.google.com/chrome?p=root_store";
#endif
// Please do not append entries here. See the comments at the top of the file.
} // namespace chrome
#endif // CHROME_COMMON_URL_CONSTANTS_H_
|