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

Unified Diff: third_party/WebKit/Source/core/html/HTMLAnchorElement.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/HTMLAnchorElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLAnchorElement.h b/third_party/WebKit/Source/core/html/HTMLAnchorElement.h
index 4c8a0ce65e3cee511304f8fdad29a24421835581..b67eeb481750926fe1a7259e19da80d2fd740ace 100644
--- a/third_party/WebKit/Source/core/html/HTMLAnchorElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLAnchorElement.h
@@ -102,12 +102,14 @@ class CORE_EXPORT HTMLAnchorElement : public HTMLElement, public DOMURLUtils {
void attributeChanged(const AttributeModificationParams&) override;
bool shouldHaveFocusAppearance() const final;
- 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 isMouseFocusable() const override;
bool isKeyboardFocusable() const override;
void defaultEventHandler(Event*) final;

Powered by Google App Engine
This is Rietveld 408576698