url_constants.h 1.0 KB

123456789101112131415161718192021222324252627282930
  1. // Copyright 2022 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef ASH_CONSTANTS_URL_CONSTANTS_H_
  5. #define ASH_CONSTANTS_URL_CONSTANTS_H_
  6. #include "base/component_export.h"
  7. // Contains constants for known URLs for ash components. URL constants for
  8. // ash-chrome should be in chrome/common/url_contants.h.
  9. //
  10. // - Keep the constants sorted by name within its section.
  11. // - Use the same order in this header and ash_url_constants.cc.
  12. namespace chrome {
  13. // The URL for the "Learn more" link for Android Messages.
  14. COMPONENT_EXPORT(ASH_CONSTANTS)
  15. extern const char kAndroidMessagesLearnMoreURL[];
  16. // The URL for additional help that is given when Linux export/import fails.
  17. COMPONENT_EXPORT(ASH_CONSTANTS) extern const char kLinuxExportImportHelpURL[];
  18. // The URL for the "Learn more" link in the connected devices.
  19. COMPONENT_EXPORT(ASH_CONSTANTS) extern const char kMultiDeviceLearnMoreURL[];
  20. } // namespace chrome
  21. #endif // ASH_CONSTANTS_URL_CONSTANTS_H_