color_internals_ui.h 791 B

1234567891011121314151617181920212223242526
  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_WEBUI_COLOR_INTERNALS_COLOR_INTERNALS_UI_H_
  5. #define ASH_WEBUI_COLOR_INTERNALS_COLOR_INTERNALS_UI_H_
  6. #include "ui/webui/mojo_web_ui_controller.h"
  7. namespace ash {
  8. // WebUIController for chrome://color-internals/.
  9. class ColorInternalsUI : public ui::MojoWebUIController {
  10. public:
  11. explicit ColorInternalsUI(content::WebUI* web_ui);
  12. ColorInternalsUI(const ColorInternalsUI&) = delete;
  13. ColorInternalsUI& operator=(const ColorInternalsUI&) = delete;
  14. ~ColorInternalsUI() override;
  15. private:
  16. WEB_UI_CONTROLLER_TYPE_DECL();
  17. };
  18. } // namespace ash
  19. #endif // ASH_WEBUI_COLOR_INTERNALS_COLOR_INTERNALS_UI_H_