blob: 534bc4b101527088fe4910ce240ee535c4db1dd4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
// 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 <string>
#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<protocol::ClipboardStub> 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<Clipboard> Create();
};
} // namespace remoting
#endif // REMOTING_HOST_CLIPBOARD_H_
|