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 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 | 186 |
187 int lastSpellCheckRequestSequence(Document*, ExceptionState&); | 187 int lastSpellCheckRequestSequence(Document*, ExceptionState&); |
188 int lastSpellCheckProcessedSequence(Document*, ExceptionState&); | 188 int lastSpellCheckProcessedSequence(Document*, ExceptionState&); |
189 | 189 |
190 Vector<AtomicString> userPreferredLanguages() const; | 190 Vector<AtomicString> userPreferredLanguages() const; |
191 void setUserPreferredLanguages(const Vector<String>&); | 191 void setUserPreferredLanguages(const Vector<String>&); |
192 | 192 |
193 unsigned activeDOMObjectCount(Document*); | 193 unsigned activeDOMObjectCount(Document*); |
194 unsigned wheelEventHandlerCount(Document*); | 194 unsigned wheelEventHandlerCount(Document*); |
195 unsigned scrollEventHandlerCount(Document*); | 195 unsigned scrollEventHandlerCount(Document*); |
| 196 unsigned blockingTouchStartOrMoveEventHandlerCount(Document*); |
| 197 unsigned passiveTouchStartOrMoveEventHandlerCount(Document*); |
196 unsigned touchStartOrMoveEventHandlerCount(Document*); | 198 unsigned touchStartOrMoveEventHandlerCount(Document*); |
197 unsigned touchEndOrCancelEventHandlerCount(Document*); | 199 unsigned touchEndOrCancelEventHandlerCount(Document*); |
198 LayerRectList* touchEventTargetLayerRects(Document*, ExceptionState&); | 200 LayerRectList* touchEventTargetLayerRects(Document*, ExceptionState&); |
199 | 201 |
200 bool executeCommand(Document*, const String& name, const String& value, Exce
ptionState&); | 202 bool executeCommand(Document*, const String& name, const String& value, Exce
ptionState&); |
201 | 203 |
202 AtomicString htmlNamespace(); | 204 AtomicString htmlNamespace(); |
203 Vector<AtomicString> htmlTags(); | 205 Vector<AtomicString> htmlTags(); |
204 AtomicString svgNamespace(); | 206 AtomicString svgNamespace(); |
205 Vector<AtomicString> svgTags(); | 207 Vector<AtomicString> svgTags(); |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
409 | 411 |
410 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 412 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
411 Member<InternalRuntimeFlags> m_runtimeFlags; | 413 Member<InternalRuntimeFlags> m_runtimeFlags; |
412 | 414 |
413 IterationSource* startIteration(ScriptState*, ExceptionState&) override; | 415 IterationSource* startIteration(ScriptState*, ExceptionState&) override; |
414 }; | 416 }; |
415 | 417 |
416 } // namespace blink | 418 } // namespace blink |
417 | 419 |
418 #endif // Internals_h | 420 #endif // Internals_h |
OLD | NEW |