| 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 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 int lastSpellCheckProcessedSequence(Document*, ExceptionState&); | 259 int lastSpellCheckProcessedSequence(Document*, ExceptionState&); |
| 260 String idleTimeSpellCheckerState(Document*, ExceptionState&); | 260 String idleTimeSpellCheckerState(Document*, ExceptionState&); |
| 261 void runIdleTimeSpellChecker(Document*, ExceptionState&); | 261 void runIdleTimeSpellChecker(Document*, ExceptionState&); |
| 262 | 262 |
| 263 Vector<AtomicString> userPreferredLanguages() const; | 263 Vector<AtomicString> userPreferredLanguages() const; |
| 264 void setUserPreferredLanguages(const Vector<String>&); | 264 void setUserPreferredLanguages(const Vector<String>&); |
| 265 | 265 |
| 266 unsigned mediaKeysCount(); | 266 unsigned mediaKeysCount(); |
| 267 unsigned mediaKeySessionCount(); | 267 unsigned mediaKeySessionCount(); |
| 268 unsigned suspendableObjectCount(Document*); | 268 unsigned suspendableObjectCount(Document*); |
| 269 unsigned wheelEventHandlerCount(Document*); | 269 unsigned wheelEventHandlerCount(Document*) const; |
| 270 unsigned scrollEventHandlerCount(Document*); | 270 unsigned scrollEventHandlerCount(Document*) const; |
| 271 unsigned touchStartOrMoveEventHandlerCount(Document*); | 271 unsigned touchStartOrMoveEventHandlerCount(Document*) const; |
| 272 unsigned touchEndOrCancelEventHandlerCount(Document*); | 272 unsigned touchEndOrCancelEventHandlerCount(Document*) const; |
| 273 unsigned pointerEventHandlerCount(Document*) const; |
| 274 |
| 273 LayerRectList* touchEventTargetLayerRects(Document*, ExceptionState&); | 275 LayerRectList* touchEventTargetLayerRects(Document*, ExceptionState&); |
| 274 | 276 |
| 275 bool executeCommand(Document*, | 277 bool executeCommand(Document*, |
| 276 const String& name, | 278 const String& name, |
| 277 const String& value, | 279 const String& value, |
| 278 ExceptionState&); | 280 ExceptionState&); |
| 279 | 281 |
| 280 AtomicString htmlNamespace(); | 282 AtomicString htmlNamespace(); |
| 281 Vector<AtomicString> htmlTags(); | 283 Vector<AtomicString> htmlTags(); |
| 282 AtomicString svgNamespace(); | 284 AtomicString svgNamespace(); |
| (...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 573 const String& marker_type, | 575 const String& marker_type, |
| 574 unsigned index, | 576 unsigned index, |
| 575 ExceptionState&); | 577 ExceptionState&); |
| 576 Member<InternalRuntimeFlags> runtime_flags_; | 578 Member<InternalRuntimeFlags> runtime_flags_; |
| 577 Member<Document> document_; | 579 Member<Document> document_; |
| 578 }; | 580 }; |
| 579 | 581 |
| 580 } // namespace blink | 582 } // namespace blink |
| 581 | 583 |
| 582 #endif // Internals_h | 584 #endif // Internals_h |
| OLD | NEW |