Chromium Code Reviews| 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 "base/strings/string_util.h" | 5 #include "base/strings/string_util.h" |
| 6 #include "base/strings/utf_string_conversions.h" | 6 #include "base/strings/utf_string_conversions.h" |
| 7 #include "chrome/test/base/chrome_render_view_test.h" | 7 #include "chrome/test/base/chrome_render_view_test.h" |
| 8 #include "components/autofill/content/common/autofill_messages.h" | 8 #include "components/autofill/content/common/autofill_messages.h" |
| 9 #include "components/autofill/content/renderer/autofill_agent.h" | 9 #include "components/autofill/content/renderer/autofill_agent.h" |
| 10 #include "components/autofill/content/renderer/form_autofill_util.h" | 10 #include "components/autofill/content/renderer/form_autofill_util.h" |
| (...skipping 1311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1322 EXPECT_TRUE(static_cast<IPC::Listener*>(password_autofill_) | 1322 EXPECT_TRUE(static_cast<IPC::Listener*>(password_autofill_) |
| 1323 ->OnMessageReceived(msg_deactivate)); | 1323 ->OnMessageReceived(msg_deactivate)); |
| 1324 | 1324 |
| 1325 render_thread_->sink().ClearMessages(); | 1325 render_thread_->sink().ClearMessages(); |
| 1326 SendVisiblePasswordForms(); | 1326 SendVisiblePasswordForms(); |
| 1327 const IPC::Message* message = render_thread_->sink().GetFirstMessageMatching( | 1327 const IPC::Message* message = render_thread_->sink().GetFirstMessageMatching( |
| 1328 AutofillHostMsg_RecordSavePasswordProgress::ID); | 1328 AutofillHostMsg_RecordSavePasswordProgress::ID); |
| 1329 EXPECT_FALSE(message); | 1329 EXPECT_FALSE(message); |
| 1330 } | 1330 } |
| 1331 | 1331 |
| 1332 // Thest that the agent sends an IPC call to get the current activity state of | |
|
engedy
2014/06/16 09:13:38
nit: s/Thest/Test/.
vabr (Chromium)
2014/06/20 10:47:04
Done.
| |
| 1333 // password saving logging soon after construction. | |
| 1334 TEST_F(PasswordAutofillAgentTest, SendsLoggingStateUpdatePingOnConstruction) { | |
| 1335 const IPC::Message* message = render_thread_->sink().GetFirstMessageMatching( | |
| 1336 AutofillHostMsg_UpdateLoggingState::ID); | |
| 1337 EXPECT_TRUE(message); | |
| 1338 } | |
| 1339 | |
| 1332 } // namespace autofill | 1340 } // namespace autofill |
| OLD | NEW |