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

Side by Side Diff: jingle/notifier/base/chrome_async_socket_unittest.cc

Issue 8949026: Move net/base/sys_byteorder.h to base/sys_byteorder.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Denitting, rebase Created 8 years, 12 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
« no previous file with comments | « crypto/p224.cc ('k') | jingle/notifier/communicator/xmpp_connection_generator.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "jingle/notifier/base/chrome_async_socket.h" 5 #include "jingle/notifier/base/chrome_async_socket.h"
6 6
7 #if defined(OS_WIN)
8 #include <winsock2.h>
9 #elif defined(OS_POSIX)
10 #include <arpa/inet.h>
11 #endif
12
13 #include <deque> 7 #include <deque>
14 #include <string> 8 #include <string>
15 9
16 #include "base/basictypes.h" 10 #include "base/basictypes.h"
17 #include "base/logging.h" 11 #include "base/logging.h"
18 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
19 #include "base/message_loop.h" 13 #include "base/message_loop.h"
14 #include "base/sys_byteorder.h"
20 #include "jingle/notifier/base/resolving_client_socket_factory.h" 15 #include "jingle/notifier/base/resolving_client_socket_factory.h"
21 #include "net/base/cert_verifier.h" 16 #include "net/base/cert_verifier.h"
22 #include "net/base/net_errors.h" 17 #include "net/base/net_errors.h"
23 #include "net/base/ssl_config_service.h" 18 #include "net/base/ssl_config_service.h"
24 #include "net/socket/socket_test_util.h" 19 #include "net/socket/socket_test_util.h"
25 #include "net/socket/ssl_client_socket.h" 20 #include "net/socket/ssl_client_socket.h"
26 #include "net/url_request/url_request_context_getter.h" 21 #include "net/url_request/url_request_context_getter.h"
27 #include "talk/base/sigslot.h" 22 #include "talk/base/sigslot.h"
28 #include "talk/base/socketaddress.h" 23 #include "talk/base/socketaddress.h"
29 #include "testing/gtest/include/gtest/gtest.h" 24 #include "testing/gtest/include/gtest/gtest.h"
(...skipping 1039 matching lines...) Expand 10 before | Expand all | Expand 10 after
1069 message_loop_.RunAllPending(); 1064 message_loop_.RunAllPending();
1070 1065
1071 ExpectNoSignal(); 1066 ExpectNoSignal();
1072 1067
1073 DoSSLCloseOpenedNoError(); 1068 DoSSLCloseOpenedNoError();
1074 } 1069 }
1075 1070
1076 } // namespace 1071 } // namespace
1077 1072
1078 } // namespace notifier 1073 } // namespace notifier
OLDNEW
« no previous file with comments | « crypto/p224.cc ('k') | jingle/notifier/communicator/xmpp_connection_generator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698