| 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 int visualViewportWidth(); | 367 int visualViewportWidth(); |
| 368 // The scroll position of the visual viewport relative to the document origi
n. | 368 // The scroll position of the visual viewport relative to the document origi
n. |
| 369 double visualViewportScrollX(); | 369 double visualViewportScrollX(); |
| 370 double visualViewportScrollY(); | 370 double visualViewportScrollY(); |
| 371 | 371 |
| 372 // Return true if the given use counter exists for the given document. | 372 // Return true if the given use counter exists for the given document. |
| 373 // |useCounterId| must be one of the values from the UseCounter::Feature enu
m. | 373 // |useCounterId| must be one of the values from the UseCounter::Feature enu
m. |
| 374 bool isUseCounted(Document*, int useCounterId); | 374 bool isUseCounted(Document*, int useCounterId); |
| 375 bool isCSSPropertyUseCounted(Document*, const String&); | 375 bool isCSSPropertyUseCounted(Document*, const String&); |
| 376 | 376 |
| 377 String unscopeableAttribute(); | 377 String unscopableAttribute(); |
| 378 String unscopeableMethod(); | 378 String unscopableMethod(); |
| 379 | 379 |
| 380 ClientRectList* focusRingRects(Element*); | 380 ClientRectList* focusRingRects(Element*); |
| 381 ClientRectList* outlineRects(Element*); | 381 ClientRectList* outlineRects(Element*); |
| 382 | 382 |
| 383 void setCapsLockState(bool enabled); | 383 void setCapsLockState(bool enabled); |
| 384 | 384 |
| 385 bool setScrollbarVisibilityInScrollableArea(Node*, bool visible); | 385 bool setScrollbarVisibilityInScrollableArea(Node*, bool visible); |
| 386 | 386 |
| 387 // Translate given platform monotonic time in seconds to high resolution | 387 // Translate given platform monotonic time in seconds to high resolution |
| 388 // document time in seconds | 388 // document time in seconds |
| (...skipping 27 matching lines...) Expand all Loading... |
| 416 | 416 |
| 417 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 417 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
| 418 Member<InternalRuntimeFlags> m_runtimeFlags; | 418 Member<InternalRuntimeFlags> m_runtimeFlags; |
| 419 | 419 |
| 420 IterationSource* startIteration(ScriptState*, ExceptionState&) override; | 420 IterationSource* startIteration(ScriptState*, ExceptionState&) override; |
| 421 }; | 421 }; |
| 422 | 422 |
| 423 } // namespace blink | 423 } // namespace blink |
| 424 | 424 |
| 425 #endif // Internals_h | 425 #endif // Internals_h |
| OLD | NEW |