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 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
365 | 365 |
366 String unscopeableAttribute(); | 366 String unscopeableAttribute(); |
367 String unscopeableMethod(); | 367 String unscopeableMethod(); |
368 | 368 |
369 ClientRectList* focusRingRects(Element*); | 369 ClientRectList* focusRingRects(Element*); |
370 | 370 |
371 void setCapsLockState(bool enabled); | 371 void setCapsLockState(bool enabled); |
372 | 372 |
373 bool setScrollbarVisibilityInScrollableArea(Node*, bool visible); | 373 bool setScrollbarVisibilityInScrollableArea(Node*, bool visible); |
374 | 374 |
| 375 void triggerAutoplayVisibilityCheck(HTMLMediaElement*); |
| 376 |
375 private: | 377 private: |
376 explicit Internals(ScriptState*); | 378 explicit Internals(ScriptState*); |
377 Document* contextDocument() const; | 379 Document* contextDocument() const; |
378 LocalFrame* frame() const; | 380 LocalFrame* frame() const; |
379 Vector<String> iconURLs(Document*, int iconTypesMask) const; | 381 Vector<String> iconURLs(Document*, int iconTypesMask) const; |
380 ClientRectList* annotatedRegions(Document*, bool draggable, ExceptionState&)
; | 382 ClientRectList* annotatedRegions(Document*, bool draggable, ExceptionState&)
; |
381 | 383 |
382 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 384 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
383 Member<InternalRuntimeFlags> m_runtimeFlags; | 385 Member<InternalRuntimeFlags> m_runtimeFlags; |
384 | 386 |
385 IterationSource* startIteration(ScriptState*, ExceptionState&) override; | 387 IterationSource* startIteration(ScriptState*, ExceptionState&) override; |
386 }; | 388 }; |
387 | 389 |
388 } // namespace blink | 390 } // namespace blink |
389 | 391 |
390 #endif // Internals_h | 392 #endif // Internals_h |
OLD | NEW |