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

Unified Diff: remoting/host/clipboard_linux.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: Correct fix. 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
« no previous file with comments | « remoting/host/clipboard.h ('k') | remoting/host/clipboard_mac.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/clipboard_linux.cc
diff --git a/remoting/host/clipboard_linux.cc b/remoting/host/clipboard_linux.cc
index 56fa37b3599e037fdd75f8c401411c72706f59d5..6a1729167fccf9aeea4617c719d28d037e3290a2 100644
--- a/remoting/host/clipboard_linux.cc
+++ b/remoting/host/clipboard_linux.cc
@@ -13,7 +13,8 @@ class ClipboardLinux : public Clipboard {
ClipboardLinux();
// Must be called on the UI thread.
- virtual void Start() OVERRIDE;
+ virtual void Start(
+ scoped_ptr<protocol::ClipboardStub> client_clipboard) OVERRIDE;
virtual void InjectClipboardEvent(
const protocol::ClipboardEvent& event) OVERRIDE;
virtual void Stop() OVERRIDE;
@@ -22,7 +23,8 @@ class ClipboardLinux : public Clipboard {
DISALLOW_COPY_AND_ASSIGN(ClipboardLinux);
};
-void ClipboardLinux::Start() {
+void ClipboardLinux::Start(
+ scoped_ptr<protocol::ClipboardStub> client_clipboard) {
NOTIMPLEMENTED();
}
« no previous file with comments | « remoting/host/clipboard.h ('k') | remoting/host/clipboard_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698