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

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: Don't ref-count ClipboardThreadProxy. 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..7d4a235c7fd6b65f0c061c1c8b37ae5be67da662 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(
+ scoped_ptr<protocol::ClipboardStub> client_clipboard) {
+ event_executor_->OnSessionStarted(client_clipboard.Pass());
}
void DesktopEnvironment::OnSessionFinished() {

Powered by Google App Engine
This is Rietveld 408576698