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

Side by Side 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
6 * reserved. 6 * reserved.
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 InsertionNotificationRequest insertedInto(ContainerNode*) override; 146 InsertionNotificationRequest insertedInto(ContainerNode*) override;
147 void removedFrom(ContainerNode*) override; 147 void removedFrom(ContainerNode*) override;
148 void willChangeForm() override; 148 void willChangeForm() override;
149 void didChangeForm() override; 149 void didChangeForm() override;
150 void didMoveToNewDocument(Document& oldDocument) override; 150 void didMoveToNewDocument(Document& oldDocument) override;
151 151
152 bool supportsFocus() const override; 152 bool supportsFocus() const override;
153 bool isKeyboardFocusable() const override; 153 bool isKeyboardFocusable() const override;
154 virtual bool shouldShowFocusRingOnMouseFocus() const; 154 virtual bool shouldShowFocusRingOnMouseFocus() const;
155 bool shouldHaveFocusAppearance() const final; 155 bool shouldHaveFocusAppearance() const final;
156 void dispatchBlurEvent(Element* newFocusedElement, 156 void dispatchBlurEvent(
157 WebFocusType, 157 Element* newFocusedElement,
158 InputDeviceCapabilities* sourceCapabilities) override; 158 WebFocusType,
159 void dispatchFocusEvent(Element* oldFocusedElement, 159 const InputDeviceCapabilitiesValue& sourceCapabilities) override;
160 WebFocusType, 160 void dispatchFocusEvent(
161 InputDeviceCapabilities* sourceCapabilities) override; 161 Element* oldFocusedElement,
162 WebFocusType,
163 const InputDeviceCapabilitiesValue& sourceCapabilities) override;
162 void willCallDefaultEventHandler(const Event&) final; 164 void willCallDefaultEventHandler(const Event&) final;
163 165
164 void didRecalcStyle() override; 166 void didRecalcStyle() override;
165 167
166 // This must be called any time the result of willValidate() has changed. 168 // This must be called any time the result of willValidate() has changed.
167 void setNeedsWillValidateCheck(); 169 void setNeedsWillValidateCheck();
168 virtual bool recalcWillValidate() const; 170 virtual bool recalcWillValidate() const;
169 171
170 virtual void resetImpl() {} 172 virtual void resetImpl() {}
171 virtual bool supportsAutofocus() const; 173 virtual bool supportsAutofocus() const;
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 DEFINE_HTMLELEMENT_TYPE_CASTS_WITH_FUNCTION(HTMLFormControlElement); 222 DEFINE_HTMLELEMENT_TYPE_CASTS_WITH_FUNCTION(HTMLFormControlElement);
221 DEFINE_TYPE_CASTS(HTMLFormControlElement, 223 DEFINE_TYPE_CASTS(HTMLFormControlElement,
222 ListedElement, 224 ListedElement,
223 control, 225 control,
224 control->isFormControlElement(), 226 control->isFormControlElement(),
225 control.isFormControlElement()); 227 control.isFormControlElement());
226 228
227 } // namespace blink 229 } // namespace blink
228 230
229 #endif 231 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698