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

Unified Diff: Source/core/html/forms/FileInputType.cpp

Issue 138003005: Move dispatchChangeEvent to HTMLFormControlElement (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Retry Created 6 years, 11 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
« no previous file with comments | « Source/core/html/HTMLTextFormControlElement.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/forms/FileInputType.cpp
diff --git a/Source/core/html/forms/FileInputType.cpp b/Source/core/html/forms/FileInputType.cpp
index d3ae7c931cf42ef622ab1378a4203c5f1aa4f6df..d85265a183e6cc5519d41c283760763000c63be6 100644
--- a/Source/core/html/forms/FileInputType.cpp
+++ b/Source/core/html/forms/FileInputType.cpp
@@ -303,7 +303,7 @@ void FileInputType::setFiles(PassRefPtr<FileList> files)
if (pathsChanged) {
// This call may cause destruction of this instance.
// input instance is safe since it is ref-counted.
- input->HTMLElement::dispatchChangeEvent();
+ input->dispatchChangeEvent();
}
input->setChangedSinceLastFormControlChangeEvent(false);
}
« no previous file with comments | « Source/core/html/HTMLTextFormControlElement.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698