1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23

ash / webui / camera_app_ui / camera_app_untrusted_ui.h [blame]

// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef ASH_WEBUI_CAMERA_APP_UI_CAMERA_APP_UNTRUSTED_UI_H_
#define ASH_WEBUI_CAMERA_APP_UI_CAMERA_APP_UNTRUSTED_UI_H_

#include "ui/webui/untrusted_web_ui_controller.h"

namespace ash {

// The Web UI for chrome-untrusted://camera-app.
class CameraAppUntrustedUI : public ui::UntrustedWebUIController {
 public:
  explicit CameraAppUntrustedUI(content::WebUI* web_ui);
  CameraAppUntrustedUI(const CameraAppUntrustedUI&) = delete;
  CameraAppUntrustedUI& operator=(const CameraAppUntrustedUI&) = delete;
  ~CameraAppUntrustedUI() override;
};

}  // namespace ash

#endif  // ASH_WEBUI_CAMERA_APP_UI_CAMERA_APP_UNTRUSTED_UI_H_