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

Unified Diff: remoting/host/clipboard.h

Issue 10381115: [Chromoting] The Windows IT2Me host gets any new text items it finds on the clipboard. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move ClipboardWin to the UI thread, and tidy up. 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 | « no previous file | remoting/host/clipboard_win.cc » ('j') | remoting/host/event_executor.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/clipboard.h
diff --git a/remoting/host/clipboard.h b/remoting/host/clipboard.h
index c21a8ba1bb797056fb891ab299ff33097fa0acb1..f56194e326ef11cec8b147e9ac89d90dade6d8c6 100644
--- a/remoting/host/clipboard.h
+++ b/remoting/host/clipboard.h
@@ -20,15 +20,15 @@ class Clipboard {
virtual ~Clipboard() {};
// Initialises any objects needed to read from or write to the clipboard.
- // This method must be called on the desktop thread.
+ // This method must be called on the UI thread.
Wez 2012/05/15 23:46:19 Perhaps move this comment and its friends to a sin
simonmorris 2012/05/16 00:41:33 Done.
virtual void Start() = 0;
// Destroys any objects initialised by Start().
- // This method must be called on the desktop thread.
+ // This method must be called on the UI thread.
virtual void Stop() = 0;
// Writes an item to the clipboard.
- // This method must be called on the desktop thread, after Start().
+ // This method must be called on the UI thread, after Start().
virtual void InjectClipboardEvent(const protocol::ClipboardEvent& event) = 0;
static scoped_ptr<Clipboard> Create();
« no previous file with comments | « no previous file | remoting/host/clipboard_win.cc » ('j') | remoting/host/event_executor.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698