OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/signaling/xmpp_signal_strategy.h" | 5 #include "remoting/signaling/xmpp_signal_strategy.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/location.h" | 8 #include "base/location.h" |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/single_thread_task_runner.h" | 10 #include "base/single_thread_task_runner.h" |
11 #include "base/strings/string_util.h" | 11 #include "base/strings/string_util.h" |
12 #include "base/thread_task_runner_handle.h" | 12 #include "base/thread_task_runner_handle.h" |
13 #include "jingle/glue/chrome_async_socket.h" | 13 #include "jingle/glue/chrome_async_socket.h" |
14 #include "jingle/glue/task_pump.h" | 14 #include "jingle/glue/task_pump.h" |
15 #include "jingle/glue/xmpp_client_socket_factory.h" | 15 #include "jingle/glue/xmpp_client_socket_factory.h" |
16 #include "jingle/notifier/base/gaia_constants.h" | 16 #include "jingle/notifier/base/gaia_constants.h" |
17 #include "jingle/notifier/base/gaia_token_pre_xmpp_auth.h" | 17 #include "jingle/notifier/base/gaia_token_pre_xmpp_auth.h" |
18 #include "net/socket/client_socket_factory.h" | 18 #include "net/socket/client_socket_factory.h" |
19 #include "net/url_request/url_request_context_getter.h" | 19 #include "net/url_request/url_request_context_getter.h" |
20 #include "third_party/libjingle/source/talk/xmpp/prexmppauth.h" | |
21 #include "third_party/libjingle/source/talk/xmpp/saslcookiemechanism.h" | |
22 #include "third_party/webrtc/base/thread.h" | 20 #include "third_party/webrtc/base/thread.h" |
| 21 #include "third_party/webrtc/libjingle/xmpp/prexmppauth.h" |
| 22 #include "third_party/webrtc/libjingle/xmpp/saslcookiemechanism.h" |
23 | 23 |
24 const char kDefaultResourceName[] = "chromoting"; | 24 const char kDefaultResourceName[] = "chromoting"; |
25 | 25 |
26 // Use 58 seconds keep-alive interval, in case routers terminate | 26 // Use 58 seconds keep-alive interval, in case routers terminate |
27 // connections that are idle for more than a minute. | 27 // connections that are idle for more than a minute. |
28 const int kKeepAliveIntervalSeconds = 50; | 28 const int kKeepAliveIntervalSeconds = 50; |
29 | 29 |
30 // Read buffer size used by ChromeAsyncSocket for read and write buffers. | 30 // Read buffer size used by ChromeAsyncSocket for read and write buffers. |
31 // | 31 // |
32 // TODO(sergeyu): Currently jingle::ChromeAsyncSocket fails Write() when the | 32 // TODO(sergeyu): Currently jingle::ChromeAsyncSocket fails Write() when the |
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 std::string mechanism = notifier::kDefaultGaiaAuthMechanism; | 248 std::string mechanism = notifier::kDefaultGaiaAuthMechanism; |
249 if (settings.token_service() == "oauth2") { | 249 if (settings.token_service() == "oauth2") { |
250 mechanism = "X-OAUTH2"; | 250 mechanism = "X-OAUTH2"; |
251 } | 251 } |
252 | 252 |
253 return new notifier::GaiaTokenPreXmppAuth( | 253 return new notifier::GaiaTokenPreXmppAuth( |
254 jid.Str(), settings.auth_token(), settings.token_service(), mechanism); | 254 jid.Str(), settings.auth_token(), settings.token_service(), mechanism); |
255 } | 255 } |
256 | 256 |
257 } // namespace remoting | 257 } // namespace remoting |
OLD | NEW |