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

Unified Diff: remoting/host/desktop_environment.cc

Issue 10413060: [Chromoting] Let the Windows IT2Me host send clipboard events to the client. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Correct fix. Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/host/desktop_environment.h ('k') | remoting/host/event_executor.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/desktop_environment.cc
diff --git a/remoting/host/desktop_environment.cc b/remoting/host/desktop_environment.cc
index aacd8317dd7b2f0e65968d2d6f23bdc4b68f191d..26921acc076f6379889233849d527ae26ee0a69c 100644
--- a/remoting/host/desktop_environment.cc
+++ b/remoting/host/desktop_environment.cc
@@ -86,8 +86,9 @@ DesktopEnvironment::DesktopEnvironment(
DesktopEnvironment::~DesktopEnvironment() {
}
-void DesktopEnvironment::OnSessionStarted() {
- event_executor_->OnSessionStarted();
+void DesktopEnvironment::OnSessionStarted(
+ scoped_ptr<protocol::ClipboardStub> client_clipboard) {
+ event_executor_->OnSessionStarted(client_clipboard.Pass());
}
void DesktopEnvironment::OnSessionFinished() {
« no previous file with comments | « remoting/host/desktop_environment.h ('k') | remoting/host/event_executor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698