// Copyright 2013 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_PUBLIC_BROWSER_DESKTOP_MEDIA_ID_H_ #define CONTENT_PUBLIC_BROWSER_DESKTOP_MEDIA_ID_H_ #include <string> #include <tuple> #include "build/build_config.h" #include "content/common/content_export.h" #include "content/public/browser/web_contents_media_capture_id.h" #include "ui/gfx/native_widget_types.h" namespace content { // Type used to identify desktop media sources. It's converted to string and // stored in MediaStreamRequest::requested_video_device_id. struct CONTENT_EXPORT DesktopMediaID { … }; } // namespace content #endif // CONTENT_PUBLIC_BROWSER_DESKTOP_MEDIA_ID_H_