testing_controls_impl.cc 534 B

12345678910111213141516171819
  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. #include "services/video_capture/testing_controls_impl.h"
  5. #include "base/check.h"
  6. namespace video_capture {
  7. TestingControlsImpl::TestingControlsImpl() = default;
  8. TestingControlsImpl::~TestingControlsImpl() = default;
  9. void TestingControlsImpl::Crash() {
  10. CHECK(false) << "This is an intentional crash for the purpose of testing";
  11. }
  12. } // namespace video_capture