OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
3 * Copyright (C) 2013 Apple Inc. All rights reserved. | 3 * Copyright (C) 2013 Apple Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * | 8 * |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 | 121 |
122 // FIXME: Rename these functions if walker is prefered. | 122 // FIXME: Rename these functions if walker is prefered. |
123 Node* nextSiblingByWalker(Node*, ExceptionState&); | 123 Node* nextSiblingByWalker(Node*, ExceptionState&); |
124 Node* firstChildByWalker(Node*, ExceptionState&); | 124 Node* firstChildByWalker(Node*, ExceptionState&); |
125 Node* lastChildByWalker(Node*, ExceptionState&); | 125 Node* lastChildByWalker(Node*, ExceptionState&); |
126 Node* nextNodeByWalker(Node*, ExceptionState&); | 126 Node* nextNodeByWalker(Node*, ExceptionState&); |
127 Node* previousNodeByWalker(Node*, ExceptionState&); | 127 Node* previousNodeByWalker(Node*, ExceptionState&); |
128 | 128 |
129 unsigned updateStyleAndReturnAffectedElementCount(ExceptionState&) const; | 129 unsigned updateStyleAndReturnAffectedElementCount(ExceptionState&) const; |
130 unsigned needsLayoutCount(ExceptionState&) const; | 130 unsigned needsLayoutCount(ExceptionState&) const; |
| 131 unsigned hitTestCountDelta(Document*, ExceptionState&) const; |
131 | 132 |
132 String visiblePlaceholder(Element*); | 133 String visiblePlaceholder(Element*); |
133 void selectColorInColorChooser(Element*, const String& colorValue); | 134 void selectColorInColorChooser(Element*, const String& colorValue); |
134 bool hasAutofocusRequest(Document*); | 135 bool hasAutofocusRequest(Document*); |
135 bool hasAutofocusRequest(); | 136 bool hasAutofocusRequest(); |
136 Vector<String> formControlStateOfHistoryItem(ExceptionState&); | 137 Vector<String> formControlStateOfHistoryItem(ExceptionState&); |
137 void setFormControlStateOfHistoryItem(const Vector<String>&, ExceptionState&
); | 138 void setFormControlStateOfHistoryItem(const Vector<String>&, ExceptionState&
); |
138 void setEnableMockPagePopup(bool, ExceptionState&); | 139 void setEnableMockPagePopup(bool, ExceptionState&); |
139 PassRefPtrWillBeRawPtr<PagePopupController> pagePopupController(); | 140 PassRefPtrWillBeRawPtr<PagePopupController> pagePopupController(); |
140 | 141 |
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
329 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag
gable, ExceptionState&); | 330 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag
gable, ExceptionState&); |
330 | 331 |
331 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 332 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
332 RefPtrWillBeMember<InternalRuntimeFlags> m_runtimeFlags; | 333 RefPtrWillBeMember<InternalRuntimeFlags> m_runtimeFlags; |
333 RefPtrWillBeMember<InternalProfilers> m_profilers; | 334 RefPtrWillBeMember<InternalProfilers> m_profilers; |
334 }; | 335 }; |
335 | 336 |
336 } // namespace WebCore | 337 } // namespace WebCore |
337 | 338 |
338 #endif | 339 #endif |
OLD | NEW |