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

Unified Diff: remoting/client/chromoting_client.cc

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
Patch Set: Sync. Created 8 years, 9 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/client/chromoting_client.h ('k') | remoting/protocol/client_control_dispatcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/chromoting_client.cc
diff --git a/remoting/client/chromoting_client.cc b/remoting/client/chromoting_client.cc
index 74f631389582436ddb37bc8d74ea79a83e80e71e..f37a2cdf3cd1a4169634d52db325f96536cbeda1 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,12 @@ ChromotingStats* ChromotingClient::GetStats() {
return &stats_;
}
+void ChromotingClient::InjectClipboardEvent(
+ const protocol::ClipboardEvent& event) {
+ // TODO(simonmorris): Pass the clipboard event to the webapp.
+ return;
+}
+
void ChromotingClient::ProcessVideoPacket(scoped_ptr<VideoPacket> packet,
const base::Closure& done) {
DCHECK(message_loop()->BelongsToCurrentThread());
« no previous file with comments | « remoting/client/chromoting_client.h ('k') | remoting/protocol/client_control_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698