Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(47)

Side by Side Diff: content/browser/renderer_host/media/media_stream_settings_requester.h

Issue 13989003: Replace MediaStreamUIController with MediaStreamUIProxy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012 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
5 #ifndef CONTENT_BROWSER_RENDERER_HOST_MEDIA_MEDIA_STREAM_SETTINGS_REQUESTER_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_MEDIA_MEDIA_STREAM_SETTINGS_REQUESTER_H_
7
8 #include <string>
9
10 #include "content/common/content_export.h"
11 #include "content/common/media/media_stream_options.h"
12
13 namespace content {
14
15 // Implemented by the class requesting media capture device usage.
16 class CONTENT_EXPORT SettingsRequester {
17 public:
18 // If no error occurred, this call will deliver the result and the request
19 // is considered answered.
20 virtual void DevicesAccepted(const std::string& label,
21 const StreamDeviceInfoArray& devices) = 0;
22
23 // An error for specified |request_id| has occurred.
24 virtual void SettingsError(const std::string& label) = 0;
25
26 // Called when user requested the stream with the specified |label| to be
27 // stopped.
28 virtual void StopStreamFromUI(const std::string& label) = 0;
29
30 // Gets a list of available devices stored in the requester.
31 virtual void GetAvailableDevices(MediaStreamDevices* devices) = 0;
32
33 protected:
34 virtual ~SettingsRequester() {}
35 };
36
37 } // namespace content
38
39 #endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_MEDIA_STREAM_SETTINGS_REQUESTER_H _
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698