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

Unified Diff: third_party/WebKit/Source/core/svg/SVGAElement.cpp

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/svg/SVGAElement.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGAElement.cpp b/third_party/WebKit/Source/core/svg/SVGAElement.cpp
index a3283c6c2cd0693135c08c9531793fb984ad1233..b9f91a4a9f7568a6ad5e1834bb8ad60d323ad39c 100644
--- a/third_party/WebKit/Source/core/svg/SVGAElement.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGAElement.cpp
@@ -167,7 +167,7 @@ bool SVGAElement::shouldHaveFocusAppearance() const {
void SVGAElement::dispatchFocusEvent(
Element* oldFocusedElement,
WebFocusType type,
- InputDeviceCapabilities* sourceCapabilities) {
+ const InputDeviceCapabilitiesValue& sourceCapabilities) {
if (type != WebFocusTypePage)
m_wasFocusedByMouse = type == WebFocusTypeMouse;
SVGGraphicsElement::dispatchFocusEvent(oldFocusedElement, type,
@@ -177,7 +177,7 @@ void SVGAElement::dispatchFocusEvent(
void SVGAElement::dispatchBlurEvent(
Element* newFocusedElement,
WebFocusType type,
- InputDeviceCapabilities* sourceCapabilities) {
+ const InputDeviceCapabilitiesValue& sourceCapabilities) {
if (type != WebFocusTypePage)
m_wasFocusedByMouse = false;
SVGGraphicsElement::dispatchBlurEvent(newFocusedElement, type,
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGAElement.h ('k') | third_party/WebKit/Source/web/WebFormControlElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698