| 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 "jingle/notifier/communicator/single_login_attempt.h" | 5 #include "jingle/notifier/communicator/single_login_attempt.h" |
| 6 | 6 |
| 7 #include <cstddef> | 7 #include <cstddef> |
| 8 | 8 |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/message_loop/message_loop.h" | 11 #include "base/message_loop/message_loop.h" |
| 12 #include "jingle/notifier/base/const_communicator.h" | 12 #include "jingle/notifier/base/const_communicator.h" |
| 13 #include "jingle/notifier/base/fake_base_task.h" | 13 #include "jingle/notifier/base/fake_base_task.h" |
| 14 #include "jingle/notifier/communicator/login_settings.h" | 14 #include "jingle/notifier/communicator/login_settings.h" |
| 15 #include "net/dns/mock_host_resolver.h" | 15 #include "net/dns/mock_host_resolver.h" |
| 16 #include "net/url_request/url_request_test_util.h" | 16 #include "net/url_request/url_request_test_util.h" |
| 17 #include "talk/xmpp/constants.h" | |
| 18 #include "talk/xmpp/xmppengine.h" | |
| 19 #include "testing/gtest/include/gtest/gtest.h" | 17 #include "testing/gtest/include/gtest/gtest.h" |
| 20 #include "third_party/webrtc/libjingle/xmllite/xmlelement.h" | 18 #include "third_party/webrtc/libjingle/xmllite/xmlelement.h" |
| 19 #include "webrtc/libjingle/xmpp/constants.h" |
| 20 #include "webrtc/libjingle/xmpp/xmppengine.h" |
| 21 | 21 |
| 22 namespace buzz { | 22 namespace buzz { |
| 23 class XmppTaskParentInterface; | 23 class XmppTaskParentInterface; |
| 24 } // namespace buzz | 24 } // namespace buzz |
| 25 | 25 |
| 26 namespace notifier { | 26 namespace notifier { |
| 27 | 27 |
| 28 namespace { | 28 namespace { |
| 29 | 29 |
| 30 enum DelegateState { | 30 enum DelegateState { |
| (...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 // Fire 'Unauthorized' errors and make sure the delegate gets the | 250 // Fire 'Unauthorized' errors and make sure the delegate gets the |
| 251 // OnCredentialsRejected() event. | 251 // OnCredentialsRejected() event. |
| 252 TEST_F(SingleLoginAttemptTest, CredentialsRejected) { | 252 TEST_F(SingleLoginAttemptTest, CredentialsRejected) { |
| 253 attempt_->OnError(buzz::XmppEngine::ERROR_UNAUTHORIZED, 0, NULL); | 253 attempt_->OnError(buzz::XmppEngine::ERROR_UNAUTHORIZED, 0, NULL); |
| 254 EXPECT_EQ(CREDENTIALS_REJECTED, fake_delegate_.state()); | 254 EXPECT_EQ(CREDENTIALS_REJECTED, fake_delegate_.state()); |
| 255 } | 255 } |
| 256 | 256 |
| 257 } // namespace | 257 } // namespace |
| 258 | 258 |
| 259 } // namespace notifier | 259 } // namespace notifier |
| OLD | NEW |