Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(228)

Side by Side Diff: remoting/protocol/clipboard_thread_proxy.cc

Issue 19574007: Use a direct include of the message_loop header in remoting/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "remoting/protocol/clipboard_thread_proxy.h" 5 #include "remoting/protocol/clipboard_thread_proxy.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/message_loop.h" 8 #include "base/message_loop/message_loop.h"
9 #include "remoting/proto/event.pb.h" 9 #include "remoting/proto/event.pb.h"
10 10
11 namespace remoting { 11 namespace remoting {
12 namespace protocol { 12 namespace protocol {
13 13
14 ClipboardThreadProxy::~ClipboardThreadProxy() { 14 ClipboardThreadProxy::~ClipboardThreadProxy() {
15 } 15 }
16 16
17 ClipboardThreadProxy::ClipboardThreadProxy( 17 ClipboardThreadProxy::ClipboardThreadProxy(
18 const base::WeakPtr<ClipboardStub>& clipboard_stub, 18 const base::WeakPtr<ClipboardStub>& clipboard_stub,
(...skipping 12 matching lines...) Expand all
31 void ClipboardThreadProxy::InjectClipboardEventStatic( 31 void ClipboardThreadProxy::InjectClipboardEventStatic(
32 const base::WeakPtr<ClipboardStub>& clipboard_stub, 32 const base::WeakPtr<ClipboardStub>& clipboard_stub,
33 const ClipboardEvent& event) { 33 const ClipboardEvent& event) {
34 if (clipboard_stub.get()) { 34 if (clipboard_stub.get()) {
35 clipboard_stub->InjectClipboardEvent(event); 35 clipboard_stub->InjectClipboardEvent(event);
36 } 36 }
37 } 37 }
38 38
39 } // namespace protocol 39 } // namespace protocol
40 } // namespace remoting 40 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/protocol/channel_multiplexer_unittest.cc ('k') | remoting/protocol/connection_tester.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698