1 // Copyright 2013 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.
5 #ifndef CHROME_BROWSER_MEDIA_DESKTOP_STREAMS_REGISTRY_H_
6 #define CHROME_BROWSER_MEDIA_DESKTOP_STREAMS_REGISTRY_H_
11 #include "chrome/browser/media/desktop_media_list.h"
14 // DesktopStreamsRegistry is used to store accepted desktop media streams for
15 // Desktop Capture API. Single instance of this class is created per browser in
16 // MediaCaptureDevicesDispatcher.
17 class DesktopStreamsRegistry
{
19 DesktopStreamsRegistry();
20 ~DesktopStreamsRegistry();
22 // Adds new stream to the registry. Called by the implementation of
23 // desktopCapture.chooseDesktopMedia() API after user has approved access to
24 // |source| for the |origin|. Returns identifier of the new stream.
25 std::string
RegisterStream(int render_process_id
,
28 const content::DesktopMediaID
& source
);
30 // Validates stream identifier specified in getUserMedia(). Returns null
31 // DesktopMediaID if the specified |id| is invalid, i.e. wasn't generated
32 // using RegisterStream() or if it was generated for a different origin.
33 // Otherwise returns ID of the source and removes it from the registry.
34 content::DesktopMediaID
RequestMediaForStreamId(const std::string
& id
,
35 int render_process_id
,
40 // Type used to store list of accepted desktop media streams.
41 struct ApprovedDesktopMediaStream
{
42 int render_process_id
;
45 content::DesktopMediaID source
;
47 typedef std::map
<std::string
, ApprovedDesktopMediaStream
> StreamsMap
;
49 // Helper function that removes an expired stream from the registry.
50 void CleanupStream(const std::string
& id
);
52 StreamsMap approved_streams_
;
54 DISALLOW_COPY_AND_ASSIGN(DesktopStreamsRegistry
);
57 #endif // CHROME_BROWSER_MEDIA_DESKTOP_STREAMS_REGISTRY_H_