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

Unified Diff: third_party/WebKit/Source/core/html/TextControlElement.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/TextControlElement.h
diff --git a/third_party/WebKit/Source/core/html/TextControlElement.h b/third_party/WebKit/Source/core/html/TextControlElement.h
index c7ad473554c4d91c23ff80955f9c0b4a44d981c6..f5296076a9b8c7bd0dac5f267d770c8c3389bc4a 100644
--- a/third_party/WebKit/Source/core/html/TextControlElement.h
+++ b/third_party/WebKit/Source/core/html/TextControlElement.h
@@ -170,12 +170,14 @@ class CORE_EXPORT TextControlElement : public HTMLFormControlElementWithState {
}
static unsigned indexForPosition(HTMLElement* innerEditor, const Position&);
- void dispatchFocusEvent(Element* oldFocusedElement,
- WebFocusType,
- InputDeviceCapabilities* sourceCapabilities) final;
- void dispatchBlurEvent(Element* newFocusedElement,
- WebFocusType,
- InputDeviceCapabilities* sourceCapabilities) final;
+ void dispatchFocusEvent(
+ Element* oldFocusedElement,
+ WebFocusType,
+ const InputDeviceCapabilitiesValue& sourceCapabilities) final;
+ void dispatchBlurEvent(
+ Element* newFocusedElement,
+ WebFocusType,
+ const InputDeviceCapabilitiesValue& sourceCapabilities) final;
void scheduleSelectEvent();
// Returns true if user-editable value is empty. Used to check placeholder
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLSelectElement.cpp ('k') | third_party/WebKit/Source/core/html/TextControlElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698