// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_BROWSER_RENDERER_HOST_MEDIA_VIDEO_CAPTURE_PROVIDER_SWITCHER_H_ #define CONTENT_BROWSER_RENDERER_HOST_MEDIA_VIDEO_CAPTURE_PROVIDER_SWITCHER_H_ #include "content/browser/renderer_host/media/video_capture_provider.h" #include "content/common/content_export.h" namespace content { // Routes requests for media devices, e.g. cameras, to // |media_device_capture_provider| and for all other types of capture, e.g. // screen or tab capture, to the given |other_types_capture_provider|. class CONTENT_EXPORT VideoCaptureProviderSwitcher : public VideoCaptureProvider { … }; } // namespace content #endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_VIDEO_CAPTURE_PROVIDER_SWITCHER_H_