| 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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 touchEventHandlerCount(Document*); | 196 unsigned touchEventHandlerCount(Document*); |
| 197 unsigned touchEndOrCancelEventHandlerCount(Document*); |
| 197 LayerRectList* touchEventTargetLayerRects(Document*, ExceptionState&); | 198 LayerRectList* touchEventTargetLayerRects(Document*, ExceptionState&); |
| 198 | 199 |
| 199 bool executeCommand(Document*, const String& name, const String& value, Exce
ptionState&); | 200 bool executeCommand(Document*, const String& name, const String& value, Exce
ptionState&); |
| 200 | 201 |
| 201 AtomicString htmlNamespace(); | 202 AtomicString htmlNamespace(); |
| 202 Vector<AtomicString> htmlTags(); | 203 Vector<AtomicString> htmlTags(); |
| 203 AtomicString svgNamespace(); | 204 AtomicString svgNamespace(); |
| 204 Vector<AtomicString> svgTags(); | 205 Vector<AtomicString> svgTags(); |
| 205 | 206 |
| 206 // This is used to test rect based hit testing like what's done on touch scr
eens. | 207 // This is used to test rect based hit testing like what's done on touch scr
eens. |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 414 | 415 |
| 415 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 416 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
| 416 Member<InternalRuntimeFlags> m_runtimeFlags; | 417 Member<InternalRuntimeFlags> m_runtimeFlags; |
| 417 | 418 |
| 418 IterationSource* startIteration(ScriptState*, ExceptionState&) override; | 419 IterationSource* startIteration(ScriptState*, ExceptionState&) override; |
| 419 }; | 420 }; |
| 420 | 421 |
| 421 } // namespace blink | 422 } // namespace blink |
| 422 | 423 |
| 423 #endif // Internals_h | 424 #endif // Internals_h |
| OLD | NEW |