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 #include "base/logging.h" |
| 6 #include "remoting/protocol/clipboard_weak_ptr.h" |
| 7 |
| 8 namespace remoting { |
| 9 namespace protocol { |
| 10 |
| 11 ClipboardWeakPtr::ClipboardWeakPtr(ClipboardStub* clipboard_stub) |
| 12 : clipboard_stub_(clipboard_stub) { |
| 13 DCHECK(clipboard_stub_); |
| 14 } |
| 15 |
| 16 ClipboardWeakPtr::~ClipboardWeakPtr() { |
| 17 } |
| 18 |
| 19 void ClipboardWeakPtr::InjectClipboardEvent(const ClipboardEvent& event) { |
| 20 clipboard_stub_->InjectClipboardEvent(event); |
| 21 } |
| 22 |
| 23 } // namespace protocol |
| 24 } // namespace remoting |
OLD | NEW |