| 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 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 long height, | 251 long height, |
| 252 Document*, | 252 Document*, |
| 253 ExceptionState&); | 253 ExceptionState&); |
| 254 | 254 |
| 255 int lastSpellCheckRequestSequence(Document*, ExceptionState&); | 255 int lastSpellCheckRequestSequence(Document*, ExceptionState&); |
| 256 int lastSpellCheckProcessedSequence(Document*, ExceptionState&); | 256 int lastSpellCheckProcessedSequence(Document*, ExceptionState&); |
| 257 | 257 |
| 258 Vector<AtomicString> userPreferredLanguages() const; | 258 Vector<AtomicString> userPreferredLanguages() const; |
| 259 void setUserPreferredLanguages(const Vector<String>&); | 259 void setUserPreferredLanguages(const Vector<String>&); |
| 260 | 260 |
| 261 unsigned mediaKeysCount(); |
| 262 unsigned mediaKeySessionCount(); |
| 261 unsigned suspendableObjectCount(Document*); | 263 unsigned suspendableObjectCount(Document*); |
| 262 unsigned wheelEventHandlerCount(Document*); | 264 unsigned wheelEventHandlerCount(Document*); |
| 263 unsigned scrollEventHandlerCount(Document*); | 265 unsigned scrollEventHandlerCount(Document*); |
| 264 unsigned touchStartOrMoveEventHandlerCount(Document*); | 266 unsigned touchStartOrMoveEventHandlerCount(Document*); |
| 265 unsigned touchEndOrCancelEventHandlerCount(Document*); | 267 unsigned touchEndOrCancelEventHandlerCount(Document*); |
| 266 LayerRectList* touchEventTargetLayerRects(Document*, ExceptionState&); | 268 LayerRectList* touchEventTargetLayerRects(Document*, ExceptionState&); |
| 267 | 269 |
| 268 bool executeCommand(Document*, | 270 bool executeCommand(Document*, |
| 269 const String& name, | 271 const String& name, |
| 270 const String& value, | 272 const String& value, |
| (...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 541 ExceptionState&); | 543 ExceptionState&); |
| 542 Member<InternalRuntimeFlags> m_runtimeFlags; | 544 Member<InternalRuntimeFlags> m_runtimeFlags; |
| 543 Member<Document> m_document; | 545 Member<Document> m_document; |
| 544 | 546 |
| 545 IterationSource* startIteration(ScriptState*, ExceptionState&) override; | 547 IterationSource* startIteration(ScriptState*, ExceptionState&) override; |
| 546 }; | 548 }; |
| 547 | 549 |
| 548 } // namespace blink | 550 } // namespace blink |
| 549 | 551 |
| 550 #endif // Internals_h | 552 #endif // Internals_h |
| OLD | NEW |