| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 <vector> | 5 #include <vector> |
| 6 | 6 |
| 7 #include "base/message_loop.h" | 7 #include "base/message_loop.h" |
| 8 #include "base/string_util.h" | 8 #include "base/string_util.h" |
| 9 #include "base/utf_string_conversions.h" | 9 #include "base/utf_string_conversions.h" |
| 10 #include "chrome/browser/browser_thread.h" | 10 #include "chrome/browser/browser_thread.h" |
| 11 #include "chrome/browser/password_manager/password_manager.h" | 11 #include "chrome/browser/password_manager/password_manager.h" |
| 12 #include "chrome/browser/password_manager/password_manager_delegate.h" | 12 #include "chrome/browser/password_manager/password_manager_delegate.h" |
| 13 #include "chrome/browser/password_manager/password_store.h" | 13 #include "chrome/browser/password_manager/password_store.h" |
| 14 #include "chrome/browser/renderer_host/test/test_render_view_host.h" | |
| 15 #include "chrome/browser/tab_contents/test_tab_contents.h" | |
| 16 #include "chrome/common/url_constants.h" | 14 #include "chrome/common/url_constants.h" |
| 17 #include "chrome/test/testing_profile.h" | 15 #include "chrome/test/testing_profile.h" |
| 16 #include "content/browser/renderer_host/test_render_view_host.h" |
| 17 #include "content/browser/tab_contents/test_tab_contents.h" |
| 18 #include "testing/gtest/include/gtest/gtest.h" | 18 #include "testing/gtest/include/gtest/gtest.h" |
| 19 #include "testing/gmock/include/gmock/gmock.h" | 19 #include "testing/gmock/include/gmock/gmock.h" |
| 20 | 20 |
| 21 using webkit_glue::PasswordForm; | 21 using webkit_glue::PasswordForm; |
| 22 using testing::_; | 22 using testing::_; |
| 23 using testing::DoAll; | 23 using testing::DoAll; |
| 24 using ::testing::Exactly; | 24 using ::testing::Exactly; |
| 25 using ::testing::WithArg; | 25 using ::testing::WithArg; |
| 26 using ::testing::Return; | 26 using ::testing::Return; |
| 27 | 27 |
| (...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 EXPECT_CALL(*store_, GetLogins(_,_)) | 270 EXPECT_CALL(*store_, GetLogins(_,_)) |
| 271 .WillRepeatedly(DoAll(WithArg<1>(InvokeConsumer(0, result)), Return(0))); | 271 .WillRepeatedly(DoAll(WithArg<1>(InvokeConsumer(0, result)), Return(0))); |
| 272 std::vector<PasswordForm> observed; | 272 std::vector<PasswordForm> observed; |
| 273 PasswordForm form(MakeSimpleForm()); | 273 PasswordForm form(MakeSimpleForm()); |
| 274 observed.push_back(form); | 274 observed.push_back(form); |
| 275 manager()->OnPasswordFormsFound(observed); // The initial load. | 275 manager()->OnPasswordFormsFound(observed); // The initial load. |
| 276 // PasswordFormsVisible is not called. | 276 // PasswordFormsVisible is not called. |
| 277 | 277 |
| 278 manager()->DidStopLoading(); | 278 manager()->DidStopLoading(); |
| 279 } | 279 } |
| OLD | NEW |