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

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

Issue 2090463002: Move net/base/test_data_directory.[cc,h] to net/test (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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
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> 7 #include <utility>
8 8
9 #include "base/base64.h" 9 #include "base/base64.h"
10 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
11 #include "base/files/file_util.h" 11 #include "base/files/file_util.h"
12 #include "base/test/test_timeouts.h" 12 #include "base/test/test_timeouts.h"
13 #include "base/timer/timer.h" 13 #include "base/timer/timer.h"
14 #include "net/base/net_errors.h" 14 #include "net/base/net_errors.h"
15 #include "net/base/test_data_directory.h" 15 #include "net/test/test_data_directory.h"
16 #include "remoting/base/rsa_key_pair.h" 16 #include "remoting/base/rsa_key_pair.h"
17 #include "remoting/protocol/authenticator.h" 17 #include "remoting/protocol/authenticator.h"
18 #include "remoting/protocol/channel_authenticator.h" 18 #include "remoting/protocol/channel_authenticator.h"
19 #include "remoting/protocol/fake_stream_socket.h" 19 #include "remoting/protocol/fake_stream_socket.h"
20 #include "remoting/protocol/p2p_stream_socket.h" 20 #include "remoting/protocol/p2p_stream_socket.h"
21 #include "testing/gtest/include/gtest/gtest.h" 21 #include "testing/gtest/include/gtest/gtest.h"
22 #include "third_party/webrtc/libjingle/xmllite/xmlelement.h" 22 #include "third_party/webrtc/libjingle/xmllite/xmlelement.h"
23 23
24 using testing::_; 24 using testing::_;
25 using testing::SaveArg; 25 using testing::SaveArg;
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 168
169 void AuthenticatorTestBase::OnClientConnected( 169 void AuthenticatorTestBase::OnClientConnected(
170 int error, 170 int error,
171 std::unique_ptr<P2PStreamSocket> socket) { 171 std::unique_ptr<P2PStreamSocket> socket) {
172 client_callback_.OnDone(error); 172 client_callback_.OnDone(error);
173 client_socket_ = std::move(socket); 173 client_socket_ = std::move(socket);
174 } 174 }
175 175
176 } // namespace protocol 176 } // namespace protocol
177 } // namespace remoting 177 } // namespace remoting
OLDNEW
« no previous file with comments | « net/websockets/websocket_stream_test.cc ('k') | remoting/protocol/ssl_hmac_channel_authenticator_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698