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

Unified Diff: third_party/WebKit/Source/core/html/HTMLFormControlElement.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/HTMLFormControlElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLFormControlElement.h b/third_party/WebKit/Source/core/html/HTMLFormControlElement.h
index f0cb919b2e7114b8daea4891e7dde400ae1d074a..d739163b051da28bad7bd41eb1e01a8b2375f70e 100644
--- a/third_party/WebKit/Source/core/html/HTMLFormControlElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLFormControlElement.h
@@ -153,12 +153,14 @@ class CORE_EXPORT HTMLFormControlElement : public LabelableElement,
bool isKeyboardFocusable() const override;
virtual bool shouldShowFocusRingOnMouseFocus() const;
bool shouldHaveFocusAppearance() const final;
- void dispatchBlurEvent(Element* newFocusedElement,
- WebFocusType,
- InputDeviceCapabilities* sourceCapabilities) override;
- void dispatchFocusEvent(Element* oldFocusedElement,
- WebFocusType,
- InputDeviceCapabilities* sourceCapabilities) override;
+ void dispatchBlurEvent(
+ Element* newFocusedElement,
+ WebFocusType,
+ const InputDeviceCapabilitiesValue& sourceCapabilities) override;
+ void dispatchFocusEvent(
+ Element* oldFocusedElement,
+ WebFocusType,
+ const InputDeviceCapabilitiesValue& sourceCapabilities) override;
void willCallDefaultEventHandler(const Event&) final;
void didRecalcStyle() override;

Powered by Google App Engine
This is Rietveld 408576698