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 #include "remoting/jingle_glue/xmpp_signal_strategy.h" | 5 #include "remoting/jingle_glue/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/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/base/thread.h" | 20 #include "third_party/libjingle/source/talk/base/thread.h" |
21 #include "third_party/libjingle/source/talk/xmpp/prexmppauth.h" | 21 #include "third_party/libjingle/source/talk/xmpp/prexmppauth.h" |
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
243 std::string mechanism = notifier::kDefaultGaiaAuthMechanism; | 243 std::string mechanism = notifier::kDefaultGaiaAuthMechanism; |
244 if (settings.token_service() == "oauth2") { | 244 if (settings.token_service() == "oauth2") { |
245 mechanism = "X-OAUTH2"; | 245 mechanism = "X-OAUTH2"; |
246 } | 246 } |
247 | 247 |
248 return new notifier::GaiaTokenPreXmppAuth( | 248 return new notifier::GaiaTokenPreXmppAuth( |
249 jid.Str(), settings.auth_token(), settings.token_service(), mechanism); | 249 jid.Str(), settings.auth_token(), settings.token_service(), mechanism); |
250 } | 250 } |
251 | 251 |
252 } // namespace remoting | 252 } // namespace remoting |
OLD | NEW |