Chromium Code Reviews| 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(); |