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

Unified Diff: content/browser/renderer_host/media/media_stream_dispatcher_host.h

Issue 1943213002: Reland of Add support for device-change notifications to MediaStreamDispatcher (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: use EXPECT_DEATH_IF_SUPPORTED instead of EXPECT_DEATH Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | content/browser/renderer_host/media/media_stream_dispatcher_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/media/media_stream_dispatcher_host.h
diff --git a/content/browser/renderer_host/media/media_stream_dispatcher_host.h b/content/browser/renderer_host/media/media_stream_dispatcher_host.h
index 65343a33b6b3bf7147cb4165e37a81a4f61afb28..6a2488d2f082f130078fa443030f645cc66e455f 100644
--- a/content/browser/renderer_host/media/media_stream_dispatcher_host.h
+++ b/content/browser/renderer_host/media/media_stream_dispatcher_host.h
@@ -8,22 +8,22 @@
#include <map>
#include <string>
#include <utility>
+#include <vector>
#include "base/macros.h"
+#include "base/memory/weak_ptr.h"
#include "content/browser/renderer_host/media/media_stream_manager.h"
#include "content/browser/renderer_host/media/media_stream_requester.h"
#include "content/common/content_export.h"
#include "content/common/media/media_stream_options.h"
#include "content/public/browser/browser_message_filter.h"
#include "content/public/browser/resource_context.h"
-
-namespace url {
-class Origin;
-}
+#include "url/origin.h"
namespace content {
class MediaStreamManager;
+class MediaStreamUIProxy;
class ResourceContext;
// MediaStreamDispatcherHost is a delegate for Media Stream API messages used by
@@ -32,10 +32,10 @@ class ResourceContext;
class CONTENT_EXPORT MediaStreamDispatcherHost : public BrowserMessageFilter,
public MediaStreamRequester {
public:
- MediaStreamDispatcherHost(
- int render_process_id,
- const ResourceContext::SaltCallback& salt_callback,
- MediaStreamManager* media_stream_manager);
+ MediaStreamDispatcherHost(int render_process_id,
+ const ResourceContext::SaltCallback& salt_callback,
+ MediaStreamManager* media_stream_manager,
+ bool use_fake_ui = false);
// MediaStreamRequester implementation.
void StreamGenerated(int render_frame_id,
@@ -97,14 +97,34 @@ class CONTENT_EXPORT MediaStreamDispatcherHost : public BrowserMessageFilter,
void OnCloseDevice(int render_frame_id,
const std::string& label);
+ void OnSubscribeToDeviceChangeNotifications(
+ int render_frame_id,
+ const url::Origin& security_origin);
+
+ void OnCancelDeviceChangeNotifications(int render_frame_id);
+
void StoreRequest(int render_frame_id,
int page_request_id,
const std::string& label);
+ std::unique_ptr<MediaStreamUIProxy> CreateMediaStreamUIProxy();
+ void HandleCheckAccessResponse(std::unique_ptr<MediaStreamUIProxy> ui_proxy,
+ int render_frame_id,
+ bool have_access);
+
int render_process_id_;
ResourceContext::SaltCallback salt_callback_;
MediaStreamManager* media_stream_manager_;
+ struct DeviceChangeSubscriberInfo {
+ int render_frame_id;
+ url::Origin security_origin;
+ };
+ std::vector<DeviceChangeSubscriberInfo> device_change_subscribers_;
+ bool use_fake_ui_;
+
+ base::WeakPtrFactory<MediaStreamDispatcherHost> weak_factory_;
+
DISALLOW_COPY_AND_ASSIGN(MediaStreamDispatcherHost);
};
« no previous file with comments | « no previous file | content/browser/renderer_host/media/media_stream_dispatcher_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698