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

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: Use MessageLoopProxy+WeakPtr. 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
Index: remoting/host/desktop_environment.cc
diff --git a/remoting/host/desktop_environment.cc b/remoting/host/desktop_environment.cc
index 4b5c5c1a120e930cdee2a9f7632bd9b82ce2ec73..e52140178f1c5bfc0c657157674a94d4a8589fc7 100644
--- a/remoting/host/desktop_environment.cc
+++ b/remoting/host/desktop_environment.cc
@@ -88,8 +88,9 @@ DesktopEnvironment::DesktopEnvironment(
DesktopEnvironment::~DesktopEnvironment() {
}
-void DesktopEnvironment::OnSessionStarted() {
- event_executor_->OnSessionStarted();
+void DesktopEnvironment::OnSessionStarted(
+ const scoped_refptr<protocol::ClipboardProxy>& client_clipboard) {
+ event_executor_->OnSessionStarted(client_clipboard);
}
void DesktopEnvironment::OnSessionFinished() {

Powered by Google App Engine
This is Rietveld 408576698