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 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 forceRestrictIFramePermissions(); | 375 void forceRestrictIFramePermissions(); |
376 | 376 |
| 377 void triggerAutoplayVisibilityCheck(HTMLMediaElement*); |
| 378 |
377 private: | 379 private: |
378 explicit Internals(ScriptState*); | 380 explicit Internals(ScriptState*); |
379 Document* contextDocument() const; | 381 Document* contextDocument() const; |
380 LocalFrame* frame() const; | 382 LocalFrame* frame() const; |
381 Vector<String> iconURLs(Document*, int iconTypesMask) const; | 383 Vector<String> iconURLs(Document*, int iconTypesMask) const; |
382 ClientRectList* annotatedRegions(Document*, bool draggable, ExceptionState&)
; | 384 ClientRectList* annotatedRegions(Document*, bool draggable, ExceptionState&)
; |
383 | 385 |
384 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 386 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
385 Member<InternalRuntimeFlags> m_runtimeFlags; | 387 Member<InternalRuntimeFlags> m_runtimeFlags; |
386 | 388 |
387 IterationSource* startIteration(ScriptState*, ExceptionState&) override; | 389 IterationSource* startIteration(ScriptState*, ExceptionState&) override; |
388 }; | 390 }; |
389 | 391 |
390 } // namespace blink | 392 } // namespace blink |
391 | 393 |
392 #endif // Internals_h | 394 #endif // Internals_h |
OLD | NEW |