1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // Interface for an object that receives clipboard events.
6 // This interface handles some event messages defined in event.proto.
8 #ifndef REMOTING_PROTOCOL_CLIPBOARD_STUB_H_
9 #define REMOTING_PROTOCOL_CLIPBOARD_STUB_H_
11 #include "base/basictypes.h"
21 virtual ~ClipboardStub() {}
23 // Implementations must not assume the presence of |event|'s fields, nor that
24 // |event.data| is correctly encoded according to the specified MIME-type.
25 virtual void InjectClipboardEvent(const ClipboardEvent
& event
) = 0;
28 DISALLOW_COPY_AND_ASSIGN(ClipboardStub
);
31 } // namespace protocol
32 } // namespace remoting
34 #endif // REMOTING_PROTOCOL_CLIPBOARD_STUB_H_