vector_icons.h.template 623 B

12345678910111213141516171819202122232425262728
  1. // Copyright 2017 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. // vector_icons.h.template is used to generate vector_icons.h. Edit the former
  5. // rather than the latter.
  6. #ifndef UI_VIEWS_VECTOR_ICONS_H_
  7. #define UI_VIEWS_VECTOR_ICONS_H_
  8. #include "ui/views/views_export.h"
  9. namespace gfx {
  10. struct VectorIcon;
  11. }
  12. #define VECTOR_ICON_TEMPLATE_H(icon_name) \
  13. VIEWS_EXPORT extern const gfx::VectorIcon icon_name;
  14. namespace views {
  15. TEMPLATE_PLACEHOLDER
  16. }
  17. #undef VECTOR_ICON_TEMPLATE_H
  18. #endif // UI_VIEWS_VECTOR_ICONS_H_