ambient_view_ids.h 857 B

12345678910111213141516171819202122232425262728
  1. // Copyright 2020 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_AMBIENT_UI_AMBIENT_VIEW_IDS_H_
  5. #define ASH_AMBIENT_UI_AMBIENT_VIEW_IDS_H_
  6. namespace ash {
  7. // IDs used for the views that compose the Ambient UI.
  8. // Use these for easy access to the views during the unittests.
  9. // Note that these IDs are only guaranteed to be unique inside
  10. // |AmbientContainerView|.
  11. enum AmbientViewID {
  12. // We start at 1000 to prevent potential overlapping of Assistant view ids.
  13. kAmbientContainerView = 1000,
  14. kAmbientPhotoView,
  15. kAmbientBackgroundImageView,
  16. kAmbientGlanceableInfoView,
  17. kAmbientMediaStringView,
  18. kAmbientInfoView,
  19. kAmbientShieldView,
  20. kAmbientAnimationView,
  21. };
  22. } // namespace ash
  23. #endif // ASH_AMBIENT_UI_AMBIENT_VIEW_IDS_H_