OLD | NEW |
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 // An implementation of buzz::AsyncSocket that uses Chrome sockets. | 5 // An implementation of buzz::AsyncSocket that uses Chrome sockets. |
6 | 6 |
7 #ifndef JINGLE_NOTIFIER_BASE_CHROME_ASYNC_SOCKET_H_ | 7 #ifndef JINGLE_GLUE_CHROME_ASYNC_SOCKET_H_ |
8 #define JINGLE_NOTIFIER_BASE_CHROME_ASYNC_SOCKET_H_ | 8 #define JINGLE_GLUE_CHROME_ASYNC_SOCKET_H_ |
9 | 9 |
10 #if !defined(FEATURE_ENABLE_SSL) | 10 #if !defined(FEATURE_ENABLE_SSL) |
11 #error ChromeAsyncSocket expects FEATURE_ENABLE_SSL to be defined | 11 #error ChromeAsyncSocket expects FEATURE_ENABLE_SSL to be defined |
12 #endif | 12 #endif |
13 | 13 |
14 #include <string> | 14 #include <string> |
15 #include <vector> | 15 #include <vector> |
16 | 16 |
17 #include "base/basictypes.h" | 17 #include "base/basictypes.h" |
18 #include "base/compiler_specific.h" | 18 #include "base/compiler_specific.h" |
19 #include "base/memory/ref_counted.h" | 19 #include "base/memory/ref_counted.h" |
20 #include "base/memory/scoped_ptr.h" | 20 #include "base/memory/scoped_ptr.h" |
21 #include "base/memory/weak_ptr.h" | 21 #include "base/memory/weak_ptr.h" |
22 #include "net/base/completion_callback.h" | 22 #include "net/base/completion_callback.h" |
23 #include "net/base/net_errors.h" | 23 #include "net/base/net_errors.h" |
24 #include "talk/xmpp/asyncsocket.h" | 24 #include "third_party/libjingle/source/talk/xmpp/asyncsocket.h" |
25 | 25 |
26 namespace net { | 26 namespace net { |
27 class IOBufferWithSize; | 27 class IOBufferWithSize; |
28 class StreamSocket; | 28 class StreamSocket; |
29 } // namespace net | 29 } // namespace net |
30 | 30 |
31 namespace notifier { | 31 namespace jingle_glue { |
32 | 32 |
33 class ResolvingClientSocketFactory; | 33 class ResolvingClientSocketFactory; |
34 | 34 |
35 class ChromeAsyncSocket : public buzz::AsyncSocket { | 35 class ChromeAsyncSocket : public buzz::AsyncSocket { |
36 public: | 36 public: |
37 // Takes ownership of |resolving_client_socket_factory|. | 37 // Takes ownership of |resolving_client_socket_factory|. |
38 ChromeAsyncSocket( | 38 ChromeAsyncSocket( |
39 ResolvingClientSocketFactory* resolving_client_socket_factory, | 39 ResolvingClientSocketFactory* resolving_client_socket_factory, |
40 size_t read_buf_size, | 40 size_t read_buf_size, |
41 size_t write_buf_size); | 41 size_t write_buf_size); |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 // State for the write loop. |write_end_| <= |write_buf_->size()|. | 201 // State for the write loop. |write_end_| <= |write_buf_->size()|. |
202 // There's a write in flight (i.e., |write_state_| != IDLE) iff | 202 // There's a write in flight (i.e., |write_state_| != IDLE) iff |
203 // |write_end_| > 0. | 203 // |write_end_| > 0. |
204 AsyncIOState write_state_; | 204 AsyncIOState write_state_; |
205 scoped_refptr<net::IOBufferWithSize> write_buf_; | 205 scoped_refptr<net::IOBufferWithSize> write_buf_; |
206 size_t write_end_; | 206 size_t write_end_; |
207 | 207 |
208 DISALLOW_COPY_AND_ASSIGN(ChromeAsyncSocket); | 208 DISALLOW_COPY_AND_ASSIGN(ChromeAsyncSocket); |
209 }; | 209 }; |
210 | 210 |
211 } // namespace notifier | 211 } // namespace jingle_glue |
212 | 212 |
213 #endif // JINGLE_NOTIFIER_BASE_CHROME_ASYNC_SOCKET_H_ | 213 #endif // JINGLE_GLUE_CHROME_ASYNC_SOCKET_H_ |
OLD | NEW |