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

Unified Diff: remoting/protocol/client_event_dispatcher.cc

Issue 9646013: Add the plumbing that will carry a clipboard item from a chromoting client to a host. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sync, and make InputStub inherit from ClipboardStub. 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/protocol/client_event_dispatcher.cc
diff --git a/remoting/protocol/client_event_dispatcher.cc b/remoting/protocol/client_event_dispatcher.cc
index c0da8373f2cdcf2e8cf08aa8149e35b3edcbd1cf..ebe0d2d9c9847dd5e6ae6aeae9b3488d533f85e4 100644
--- a/remoting/protocol/client_event_dispatcher.cc
+++ b/remoting/protocol/client_event_dispatcher.cc
@@ -31,6 +31,12 @@ void ClientEventDispatcher::OnInitialized() {
BufferedSocketWriter::WriteFailedCallback());
}
+void ClientEventDispatcher::InjectClipboardEvent(const ClipboardEvent& event) {
+ // Clipboard events are not handled here.
+ // TODO(wez): Remove this function when InputEvent no longer inherits from
+ // ClipboardEvent.
Wez 2012/03/15 01:14:44 nit: NOTIMPLEMENTED() (or NOTREACHED()) here?
simonmorris 2012/03/15 16:53:19 No longer needed.
+}
+
void ClientEventDispatcher::InjectKeyEvent(const KeyEvent& event) {
EventMessage message;
message.set_sequence_number(base::Time::Now().ToInternalValue());

Powered by Google App Engine
This is Rietveld 408576698