Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(591)

Unified Diff: chrome/test/base/chrome_render_view_test.cc

Issue 2189513004: Blink: prevent didAssociateFormControls notification while parsing the document. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rename Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/test/base/chrome_render_view_test.cc
diff --git a/chrome/test/base/chrome_render_view_test.cc b/chrome/test/base/chrome_render_view_test.cc
index acd14925db7b0ca5d8f042363f605f40ac8dc98b..27bbff796fdfdcd18bcd1124f156c403bbdb41fe 100644
--- a/chrome/test/base/chrome_render_view_test.cc
+++ b/chrome/test/base/chrome_render_view_test.cc
@@ -79,9 +79,8 @@ class MockAutofillAgent : public AutofillAgent {
MOCK_CONST_METHOD0(IsUserGesture, bool());
private:
- void didAssociateFormControls(
- const blink::WebVector<blink::WebNode>& nodes) override {
- AutofillAgent::didAssociateFormControls(nodes);
+ void didAssociateFormControlsDynamically() override {
+ AutofillAgent::didAssociateFormControlsDynamically();
if (run_loop_)
run_loop_->Quit();
}
« no previous file with comments | « chrome/browser/password_manager/password_manager_browsertest.cc ('k') | components/autofill/content/renderer/autofill_agent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698