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

Unified Diff: remoting/host/clipboard_mac.mm

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_linux.cc ('k') | remoting/host/clipboard_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/clipboard_mac.mm
diff --git a/remoting/host/clipboard_mac.mm b/remoting/host/clipboard_mac.mm
index fb400b3ff98b1dcadf5953feb8400d99b2c34771..bea57d1c1a727628b5217d64a2131418e5c61648 100644
--- a/remoting/host/clipboard_mac.mm
+++ b/remoting/host/clipboard_mac.mm
@@ -13,7 +13,8 @@ class ClipboardMac : public Clipboard {
ClipboardMac();
// 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 ClipboardMac : public Clipboard {
DISALLOW_COPY_AND_ASSIGN(ClipboardMac);
};
-void ClipboardMac::Start() {
+void ClipboardMac::Start(
+ scoped_ptr<protocol::ClipboardStub> client_clipboard) {
NOTIMPLEMENTED();
}
« no previous file with comments | « remoting/host/clipboard_linux.cc ('k') | remoting/host/clipboard_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698