| 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 | 125 |
| 126 Node* nextSiblingInComposedTree(Node*, ExceptionState&); | 126 Node* nextSiblingInComposedTree(Node*, ExceptionState&); |
| 127 Node* firstChildInComposedTree(Node*, ExceptionState&); | 127 Node* firstChildInComposedTree(Node*, ExceptionState&); |
| 128 Node* lastChildInComposedTree(Node*, ExceptionState&); | 128 Node* lastChildInComposedTree(Node*, ExceptionState&); |
| 129 Node* nextInComposedTree(Node*, ExceptionState&); | 129 Node* nextInComposedTree(Node*, ExceptionState&); |
| 130 Node* previousInComposedTree(Node*, ExceptionState&); | 130 Node* previousInComposedTree(Node*, ExceptionState&); |
| 131 | 131 |
| 132 unsigned updateStyleAndReturnAffectedElementCount(ExceptionState&) const; | 132 unsigned updateStyleAndReturnAffectedElementCount(ExceptionState&) const; |
| 133 unsigned needsLayoutCount(ExceptionState&) const; | 133 unsigned needsLayoutCount(ExceptionState&) const; |
| 134 unsigned hitTestCount(Document*, ExceptionState&) const; | 134 unsigned hitTestCount(Document*, ExceptionState&) const; |
| 135 unsigned hitTestCacheHits(Document*, ExceptionState&) const; | |
| 136 Element* elementFromPointNoCache(Document*, double, double, ExceptionState&)
const; | |
| 137 void clearHitTestCache(Document*, ExceptionState&) const; | |
| 138 | 135 |
| 139 String visiblePlaceholder(Element*); | 136 String visiblePlaceholder(Element*); |
| 140 void selectColorInColorChooser(Element*, const String& colorValue); | 137 void selectColorInColorChooser(Element*, const String& colorValue); |
| 141 void endColorChooser(Element*); | 138 void endColorChooser(Element*); |
| 142 bool hasAutofocusRequest(Document*); | 139 bool hasAutofocusRequest(Document*); |
| 143 bool hasAutofocusRequest(); | 140 bool hasAutofocusRequest(); |
| 144 Vector<String> formControlStateOfHistoryItem(ExceptionState&); | 141 Vector<String> formControlStateOfHistoryItem(ExceptionState&); |
| 145 void setFormControlStateOfHistoryItem(const Vector<String>&, ExceptionState&
); | 142 void setFormControlStateOfHistoryItem(const Vector<String>&, ExceptionState&
); |
| 146 DOMWindow* pagePopupWindow() const; | 143 DOMWindow* pagePopupWindow() const; |
| 147 | 144 |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 371 | 368 |
| 372 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 369 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
| 373 Member<InternalRuntimeFlags> m_runtimeFlags; | 370 Member<InternalRuntimeFlags> m_runtimeFlags; |
| 374 | 371 |
| 375 IterationSource* startIteration(ScriptState*, ExceptionState&) override; | 372 IterationSource* startIteration(ScriptState*, ExceptionState&) override; |
| 376 }; | 373 }; |
| 377 | 374 |
| 378 } // namespace blink | 375 } // namespace blink |
| 379 | 376 |
| 380 #endif // Internals_h | 377 #endif // Internals_h |
| OLD | NEW |