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

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: 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
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());

Powered by Google App Engine
This is Rietveld 408576698