OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 "chrome/common/net/notifier/communicator/xmpp_socket_adapter.h" | 5 #include "jingle/notifier/communicator/xmpp_socket_adapter.h" |
6 | 6 |
7 #include <iomanip> | 7 #include <iomanip> |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
11 #include "chrome/common/net/notifier/base/ssl_adapter.h" | 11 #include "jingle/notifier/base/ssl_adapter.h" |
12 #include "chrome/common/net/notifier/communicator/product_info.h" | 12 #include "jingle/notifier/communicator/product_info.h" |
13 #include "talk/base/byteorder.h" | 13 #include "talk/base/byteorder.h" |
14 #include "talk/base/common.h" | 14 #include "talk/base/common.h" |
15 #include "talk/base/firewallsocketserver.h" | 15 #include "talk/base/firewallsocketserver.h" |
16 #include "talk/base/logging.h" | 16 #include "talk/base/logging.h" |
17 #include "talk/base/socketadapters.h" | 17 #include "talk/base/socketadapters.h" |
18 #include "talk/base/ssladapter.h" | 18 #include "talk/base/ssladapter.h" |
19 #include "talk/base/thread.h" | 19 #include "talk/base/thread.h" |
20 #include "talk/xmpp/xmppengine.h" | 20 #include "talk/xmpp/xmppengine.h" |
21 | 21 |
22 namespace notifier { | 22 namespace notifier { |
(...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
420 int wsa_error = 0; | 420 int wsa_error = 0; |
421 FlushWriteQueue(&error, &wsa_error); | 421 FlushWriteQueue(&error, &wsa_error); |
422 if (error != ERROR_NONE) { | 422 if (error != ERROR_NONE) { |
423 Close(); | 423 Close(); |
424 return false; | 424 return false; |
425 } | 425 } |
426 return true; | 426 return true; |
427 } | 427 } |
428 | 428 |
429 } // namespace notifier | 429 } // namespace notifier |
OLD | NEW |