OLD | NEW |
(Empty) | |
| 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. |
| 4 |
| 5 #ifndef REMOTING_PROTOCOL_CLIPBOARD_WEAK_PTR_H_ |
| 6 #define REMOTING_PROTOCOL_CLIPBOARD_WEAK_PTR_H_ |
| 7 |
| 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" |
| 10 #include "base/memory/weak_ptr.h" |
| 11 #include "remoting/protocol/clipboard_stub.h" |
| 12 |
| 13 namespace remoting { |
| 14 namespace protocol { |
| 15 |
| 16 // Forwards clipboard events to |clipboard_stub|, and supports weak pointers. |
| 17 class ClipboardWeakPtr : public ClipboardStub, |
| 18 public base::SupportsWeakPtr<ClipboardWeakPtr> { |
| 19 public: |
| 20 ClipboardWeakPtr(ClipboardStub* clipboard_stub); |
| 21 virtual ~ClipboardWeakPtr(); |
| 22 |
| 23 // ClipboardStub interface. |
| 24 virtual void InjectClipboardEvent(const ClipboardEvent& event) OVERRIDE; |
| 25 |
| 26 private: |
| 27 ClipboardStub* clipboard_stub_; |
| 28 |
| 29 DISALLOW_COPY_AND_ASSIGN(ClipboardWeakPtr); |
| 30 }; |
| 31 |
| 32 } // namespace protocol |
| 33 } // namespace remoting |
| 34 |
| 35 #endif // REMOTING_PROTOCOL_CLIPBOARD_WEAK_PTR_H_ |
OLD | NEW |