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

Unified Diff: remoting/host/desktop_environment.h

Issue 2092483002: Provide access to the ID for the remoted Windows session in the network process (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@rsk_main
Patch Set: Merging changes from 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/desktop_environment.h
diff --git a/remoting/host/desktop_environment.h b/remoting/host/desktop_environment.h
index ec984c5a4467316cf2a36673d66388f93e289093..704bec070069e41849f0bfed1b0f3d2e7f32cdcc 100644
--- a/remoting/host/desktop_environment.h
+++ b/remoting/host/desktop_environment.h
@@ -5,6 +5,7 @@
#ifndef REMOTING_HOST_DESKTOP_ENVIRONMENT_H_
#define REMOTING_HOST_DESKTOP_ENVIRONMENT_H_
+#include <cstdint>
#include <memory>
#include <string>
@@ -53,6 +54,9 @@ class DesktopEnvironment {
// Passes the final set of capabilities negotiated between the client and host
// to |this|.
virtual void SetCapabilities(const std::string& capabilities) = 0;
+
+ // Returns an id which identifies the current desktop session.
Sergey Ulanov 2016/06/23 22:35:53 Please make it clear that this ID is platform-spec
joedow 2016/06/23 23:26:04 Done.
+ virtual uint32_t GetDesktopSessionId() const = 0;
};
// Used to create |DesktopEnvironment| instances.

Powered by Google App Engine
This is Rietveld 408576698