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

Side by Side Diff: remoting/protocol/authenticator_test_base.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 | « no previous file | remoting/protocol/capture_scheduler.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/authenticator_test_base.h" 5 #include "remoting/protocol/authenticator_test_base.h"
6 6
7 #include <utility>
8
7 #include "base/base64.h" 9 #include "base/base64.h"
8 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
9 #include "base/files/file_util.h" 11 #include "base/files/file_util.h"
10 #include "base/test/test_timeouts.h" 12 #include "base/test/test_timeouts.h"
11 #include "base/timer/timer.h" 13 #include "base/timer/timer.h"
12 #include "net/base/net_errors.h" 14 #include "net/base/net_errors.h"
13 #include "net/base/test_data_directory.h" 15 #include "net/base/test_data_directory.h"
14 #include "remoting/base/rsa_key_pair.h" 16 #include "remoting/base/rsa_key_pair.h"
15 #include "remoting/protocol/authenticator.h" 17 #include "remoting/protocol/authenticator.h"
16 #include "remoting/protocol/channel_authenticator.h" 18 #include "remoting/protocol/channel_authenticator.h"
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 167
166 void AuthenticatorTestBase::OnClientConnected( 168 void AuthenticatorTestBase::OnClientConnected(
167 int error, 169 int error,
168 scoped_ptr<P2PStreamSocket> socket) { 170 scoped_ptr<P2PStreamSocket> socket) {
169 client_callback_.OnDone(error); 171 client_callback_.OnDone(error);
170 client_socket_ = std::move(socket); 172 client_socket_ = std::move(socket);
171 } 173 }
172 174
173 } // namespace protocol 175 } // namespace protocol
174 } // namespace remoting 176 } // namespace remoting
OLDNEW
« no previous file with comments | « no previous file | remoting/protocol/capture_scheduler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698