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

Unified Diff: remoting/host/host_extension_session_manager.h

Issue 2091553002: Expose ClientSession details to Host Extensions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@desktop_environment
Patch Set: Merging with ToT Created 4 years, 6 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
Index: remoting/host/host_extension_session_manager.h
diff --git a/remoting/host/host_extension_session_manager.h b/remoting/host/host_extension_session_manager.h
index cea26117101e3150765b73d997b07a856d727b74..1a439d9176661d9129ada8adc8ad297d78465bda 100644
--- a/remoting/host/host_extension_session_manager.h
+++ b/remoting/host/host_extension_session_manager.h
@@ -19,6 +19,7 @@ class DesktopCapturer;
namespace remoting {
class ClientSessionControl;
+class ClientSessionDetails;
class HostExtension;
class HostExtensionSession;
class VideoEncoder;
@@ -37,7 +38,8 @@ class HostExtensionSessionManager {
// Creates an extension manager for the specified |extensions|.
HostExtensionSessionManager(const HostExtensions& extensions,
- ClientSessionControl* client_session_control);
+ ClientSessionControl* client_session_control,
+ ClientSessionDetails* client_session_details);
virtual ~HostExtensionSessionManager();
// Returns the union of all capabilities supported by registered extensions.
@@ -59,6 +61,7 @@ class HostExtensionSessionManager {
// Passed to HostExtensionSessions to allow them to send messages,
// disconnect the session, etc.
ClientSessionControl* client_session_control_;
+ ClientSessionDetails* client_session_details_;
protocol::ClientStub* client_stub_;
// The HostExtensions to instantiate for the session, if it reaches the

Powered by Google App Engine
This is Rietveld 408576698