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

Unified Diff: third_party/WebKit/Source/core/html/HTMLInputElement.h

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/core/html/HTMLInputElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLInputElement.h b/third_party/WebKit/Source/core/html/HTMLInputElement.h
index 03d37aa63b9ffd05eb4fd05580d20e69739066a7..54a99faa5efda07dcae13a820309855ca883456b 100644
--- a/third_party/WebKit/Source/core/html/HTMLInputElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLInputElement.h
@@ -366,10 +366,11 @@ class CORE_EXPORT HTMLInputElement : public TextControlElement {
}
void handleFocusEvent(Element* oldFocusedElement, WebFocusType) final;
void handleBlurEvent() final;
- void dispatchFocusInEvent(const AtomicString& eventType,
- Element* oldFocusedElement,
- WebFocusType,
- InputDeviceCapabilities* sourceCapabilities) final;
+ void dispatchFocusInEvent(
+ const AtomicString& eventType,
+ Element* oldFocusedElement,
+ WebFocusType,
+ const InputDeviceCapabilitiesValue& sourceCapabilities) final;
bool supportsAutocapitalize() const final;
const AtomicString& defaultAutocapitalize() const final;

Powered by Google App Engine
This is Rietveld 408576698