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

Unified Diff: third_party/WebKit/Source/core/html/HTMLSelectElement.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/HTMLSelectElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLSelectElement.h b/third_party/WebKit/Source/core/html/HTMLSelectElement.h
index 10c3c5921ba60997907f179c658e7b96f470696c..f28c39e2ee4f17e87f5de15ab15775f245779374 100644
--- a/third_party/WebKit/Source/core/html/HTMLSelectElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLSelectElement.h
@@ -179,12 +179,14 @@ class CORE_EXPORT HTMLSelectElement final
bool shouldShowFocusRingOnMouseFocus() const override;
- void dispatchFocusEvent(Element* oldFocusedElement,
- WebFocusType,
- InputDeviceCapabilities* sourceCapabilities) override;
- void dispatchBlurEvent(Element* newFocusedElement,
- WebFocusType,
- InputDeviceCapabilities* sourceCapabilities) override;
+ void dispatchFocusEvent(
+ Element* oldFocusedElement,
+ WebFocusType,
+ const InputDeviceCapabilitiesValue& sourceCapabilities) override;
+ void dispatchBlurEvent(
+ Element* newFocusedElement,
+ WebFocusType,
+ const InputDeviceCapabilitiesValue& sourceCapabilities) override;
bool canStartSelection() const override { return false; }
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLLabelElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLSelectElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698