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 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
376 bool isUseCounted(Document*, int useCounterId); | 376 bool isUseCounted(Document*, int useCounterId); |
377 | 377 |
378 String unscopeableAttribute(); | 378 String unscopeableAttribute(); |
379 String unscopeableMethod(); | 379 String unscopeableMethod(); |
380 | 380 |
381 ClientRectList* focusRingRects(Element*); | 381 ClientRectList* focusRingRects(Element*); |
382 ClientRectList* outlineRects(Element*); | 382 ClientRectList* outlineRects(Element*); |
383 | 383 |
384 void setCapsLockState(bool enabled); | 384 void setCapsLockState(bool enabled); |
385 | 385 |
386 void setSelectionPaintingWithoutSelectionGapsEnabled(bool); | |
387 | |
388 bool setScrollbarVisibilityInScrollableArea(Node*, bool visible); | 386 bool setScrollbarVisibilityInScrollableArea(Node*, bool visible); |
389 | 387 |
390 void forceRestrictIFramePermissions(); | 388 void forceRestrictIFramePermissions(); |
391 | 389 |
392 // Translate given platform monotonic time in seconds to high resolution | 390 // Translate given platform monotonic time in seconds to high resolution |
393 // document time in seconds | 391 // document time in seconds |
394 double monotonicTimeToZeroBasedDocumentTime(double, ExceptionState&); | 392 double monotonicTimeToZeroBasedDocumentTime(double, ExceptionState&); |
395 | 393 |
396 void setMediaElementNetworkState(HTMLMediaElement*, int state); | 394 void setMediaElementNetworkState(HTMLMediaElement*, int state); |
397 | 395 |
(...skipping 13 matching lines...) Expand all Loading... |
411 | 409 |
412 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 410 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
413 Member<InternalRuntimeFlags> m_runtimeFlags; | 411 Member<InternalRuntimeFlags> m_runtimeFlags; |
414 | 412 |
415 IterationSource* startIteration(ScriptState*, ExceptionState&) override; | 413 IterationSource* startIteration(ScriptState*, ExceptionState&) override; |
416 }; | 414 }; |
417 | 415 |
418 } // namespace blink | 416 } // namespace blink |
419 | 417 |
420 #endif // Internals_h | 418 #endif // Internals_h |
OLD | NEW |