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

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

Issue 18052008: Use a direct include of time headers in ppapi/, printing/, 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/authenticator_test_base.h" 5 #include "remoting/protocol/authenticator_test_base.h"
6 6
7 #include "base/base64.h" 7 #include "base/base64.h"
8 #include "base/file_util.h" 8 #include "base/file_util.h"
9 #include "base/files/file_path.h" 9 #include "base/files/file_path.h"
10 #include "base/path_service.h" 10 #include "base/path_service.h"
11 #include "base/test/test_timeouts.h" 11 #include "base/test/test_timeouts.h"
12 #include "base/timer.h" 12 #include "base/timer/timer.h"
13 #include "net/base/test_data_directory.h" 13 #include "net/base/test_data_directory.h"
14 #include "remoting/base/rsa_key_pair.h" 14 #include "remoting/base/rsa_key_pair.h"
15 #include "remoting/protocol/authenticator.h" 15 #include "remoting/protocol/authenticator.h"
16 #include "remoting/protocol/channel_authenticator.h" 16 #include "remoting/protocol/channel_authenticator.h"
17 #include "remoting/protocol/fake_session.h" 17 #include "remoting/protocol/fake_session.h"
18 #include "testing/gtest/include/gtest/gtest.h" 18 #include "testing/gtest/include/gtest/gtest.h"
19 #include "third_party/libjingle/source/talk/xmllite/xmlelement.h" 19 #include "third_party/libjingle/source/talk/xmllite/xmlelement.h"
20 20
21 using testing::_; 21 using testing::_;
22 using testing::SaveArg; 22 using testing::SaveArg;
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 143
144 void AuthenticatorTestBase::OnClientConnected( 144 void AuthenticatorTestBase::OnClientConnected(
145 net::Error error, 145 net::Error error,
146 scoped_ptr<net::StreamSocket> socket) { 146 scoped_ptr<net::StreamSocket> socket) {
147 client_callback_.OnDone(error); 147 client_callback_.OnDone(error);
148 client_socket_ = socket.Pass(); 148 client_socket_ = socket.Pass();
149 } 149 }
150 150
151 } // namespace protocol 151 } // namespace protocol
152 } // namespace remoting 152 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/jingle_glue/xmpp_signal_strategy.h ('k') | remoting/protocol/client_event_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698