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

Unified Diff: third_party/WebKit/Source/web/WebFormControlElement.cpp

Issue 2678683002: Delay instantiating InputDeviceCapabilities until accessed. (Closed)
Patch Set: rebased Created 3 years, 10 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: third_party/WebKit/Source/web/WebFormControlElement.cpp
diff --git a/third_party/WebKit/Source/web/WebFormControlElement.cpp b/third_party/WebKit/Source/web/WebFormControlElement.cpp
index 1e9fd8352546003ee0109ca08d0d8a04794aa9b1..5b6da30014e5780a70ead3d959425e8eb6faabf9 100644
--- a/third_party/WebKit/Source/web/WebFormControlElement.cpp
+++ b/third_party/WebKit/Source/web/WebFormControlElement.cpp
@@ -94,25 +94,29 @@ void WebFormControlElement::setValue(const WebString& value, bool sendEvents) {
void WebFormControlElement::setAutofillValue(const WebString& value) {
// The input and change events will be sent in setValue.
if (isHTMLInputElement(*m_private) || isHTMLTextAreaElement(*m_private)) {
- if (!focused())
+ if (!focused()) {
unwrap<Element>()->dispatchFocusEvent(nullptr, WebFocusTypeForward,
- nullptr);
+ InputDeviceCapabilities::Null);
+ }
unwrap<Element>()->dispatchScopedEvent(
Event::createBubble(EventTypeNames::keydown));
unwrap<TextControlElement>()->setValue(value, DispatchInputAndChangeEvent);
unwrap<Element>()->dispatchScopedEvent(
Event::createBubble(EventTypeNames::keyup));
- if (!focused())
+ if (!focused()) {
unwrap<Element>()->dispatchBlurEvent(nullptr, WebFocusTypeForward,
- nullptr);
+ InputDeviceCapabilities::Null);
+ }
} else if (isHTMLSelectElement(*m_private)) {
- if (!focused())
+ if (!focused()) {
unwrap<Element>()->dispatchFocusEvent(nullptr, WebFocusTypeForward,
- nullptr);
+ InputDeviceCapabilities::Null);
+ }
unwrap<HTMLSelectElement>()->setValue(value, true);
- if (!focused())
+ if (!focused()) {
unwrap<Element>()->dispatchBlurEvent(nullptr, WebFocusTypeForward,
- nullptr);
+ InputDeviceCapabilities::Null);
+ }
}
}
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGAElement.cpp ('k') | third_party/WebKit/Source/web/WebLocalFrameImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698