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

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: 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..7a32152727fdd5d94e68ebac3e4bf42ffee1e5b9 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 didAssociateFormControls() override {
+ AutofillAgent::didAssociateFormControls();
if (run_loop_)
run_loop_->Quit();
}

Powered by Google App Engine
This is Rietveld 408576698