summaryrefslogtreecommitdiff
path: root/chromium/services/video_capture/testing_controls_impl.h
blob: eb051d14b6e97a6ad65e4e3cdfff56a6f5ac1408 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef SERVICES_VIDEO_CAPTURE_TESTING_CONTROLS_IMPL_H_
#define SERVICES_VIDEO_CAPTURE_TESTING_CONTROLS_IMPL_H_

#include "services/video_capture/public/mojom/testing_controls.mojom.h"

namespace video_capture {

class TestingControlsImpl : public mojom::TestingControls {
 public:
  TestingControlsImpl();
  ~TestingControlsImpl() override;

  // mojom::TestingControls implementation.
  void Crash() override;

 private:
  DISALLOW_COPY_AND_ASSIGN(TestingControlsImpl);
};

}  // namespace video_capture

#endif  // SERVICES_VIDEO_CAPTURE_TESTING_CONTROLS_IMPL_H_