 Chromium Code Reviews
 Chromium Code Reviews Issue 9921034:
  [Chromoting] Add plumbing to carry clipboard events from the host to the client.  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src
    
  
    Issue 9921034:
  [Chromoting] Add plumbing to carry clipboard events from the host to the client.  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src| Index: remoting/client/chromoting_client.cc | 
| diff --git a/remoting/client/chromoting_client.cc b/remoting/client/chromoting_client.cc | 
| index 74f631389582436ddb37bc8d74ea79a83e80e71e..f914eb60f1f8d1a5b2788d437794116829dc7248 100644 | 
| --- a/remoting/client/chromoting_client.cc | 
| +++ b/remoting/client/chromoting_client.cc | 
| @@ -61,7 +61,7 @@ void ChromotingClient::Start(scoped_refptr<XmppProxy> xmpp_proxy) { | 
| connection_->Connect(xmpp_proxy, config_.local_jid, config_.host_jid, | 
| config_.host_public_key, authenticator.Pass(), | 
| - this, this, this); | 
| + this, this, this, this); | 
| if (!view_->Initialize()) { | 
| ClientDone(); | 
| @@ -104,6 +104,11 @@ ChromotingStats* ChromotingClient::GetStats() { | 
| return &stats_; | 
| } | 
| +void ChromotingClient::InjectClipboardEvent( | 
| + const protocol::ClipboardEvent& event) { | 
| + return; | 
| 
Wez
2012/03/30 22:20:15
nit: Consider adding the TODO(): Implement me! as
 
simonmorris
2012/03/30 22:36:07
Done.
 | 
| +} | 
| + | 
| void ChromotingClient::ProcessVideoPacket(scoped_ptr<VideoPacket> packet, | 
| const base::Closure& done) { | 
| DCHECK(message_loop()->BelongsToCurrentThread()); |