// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef REMOTING_HOST_CLIPBOARD_H_ #define REMOTING_HOST_CLIPBOARD_H_ #include #include "base/callback.h" namespace remoting { namespace protocol { class ClipboardEvent; class ClipboardStub; } // namespace protocol // All Clipboard methods should be run on the UI thread, so that the Clipboard // can get change notifications. class Clipboard { public: virtual ~Clipboard() {} // Initialises any objects needed to read from or write to the clipboard. virtual void Start(scoped_ptr client_clipboard) = 0; // Destroys any objects initialised by Start(). virtual void Stop() = 0; // Writes an item to the clipboard. It must be called after Start(). virtual void InjectClipboardEvent(const protocol::ClipboardEvent& event) = 0; static scoped_ptr Create(); }; } // namespace remoting #endif // REMOTING_HOST_CLIPBOARD_H_