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

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

Issue 1547603004: Include <utility> in files that use std::move() in remoting/protocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@move_not_pass_host
Patch Set: Created 5 years 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
« no previous file with comments | « remoting/protocol/protobuf_message_parser.h ('k') | remoting/protocol/pseudotcp_adapter.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/protocol_mock_objects.h" 5 #include "remoting/protocol/protocol_mock_objects.h"
6 6
7 #include <utility>
8
7 #include "base/logging.h" 9 #include "base/logging.h"
8 #include "base/thread_task_runner_handle.h" 10 #include "base/thread_task_runner_handle.h"
9 #include "remoting/protocol/video_stream.h" 11 #include "remoting/protocol/video_stream.h"
10 12
11 namespace remoting { 13 namespace remoting {
12 namespace protocol { 14 namespace protocol {
13 15
14 MockConnectionToClientEventHandler::MockConnectionToClientEventHandler() {} 16 MockConnectionToClientEventHandler::MockConnectionToClientEventHandler() {}
15 17
16 MockConnectionToClientEventHandler::~MockConnectionToClientEventHandler() {} 18 MockConnectionToClientEventHandler::~MockConnectionToClientEventHandler() {}
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 void SynchronousPairingRegistry::PostTask( 99 void SynchronousPairingRegistry::PostTask(
98 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner, 100 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner,
99 const tracked_objects::Location& from_here, 101 const tracked_objects::Location& from_here,
100 const base::Closure& task) { 102 const base::Closure& task) {
101 DCHECK(task_runner->BelongsToCurrentThread()); 103 DCHECK(task_runner->BelongsToCurrentThread());
102 task.Run(); 104 task.Run();
103 } 105 }
104 106
105 } // namespace protocol 107 } // namespace protocol
106 } // namespace remoting 108 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/protocol/protobuf_message_parser.h ('k') | remoting/protocol/pseudotcp_adapter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698