| 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 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 // Test must call setNetworkStateNotifierTestOnly(true) before calling setNe
tworkConnectionInfo. | 338 // Test must call setNetworkStateNotifierTestOnly(true) before calling setNe
tworkConnectionInfo. |
| 339 void setNetworkConnectionInfo(const String&, ExceptionState&); | 339 void setNetworkConnectionInfo(const String&, ExceptionState&); |
| 340 | 340 |
| 341 ClientRect* boundsInViewportSpace(Element*); | 341 ClientRect* boundsInViewportSpace(Element*); |
| 342 | 342 |
| 343 unsigned countHitRegions(CanvasRenderingContext2D*); | 343 unsigned countHitRegions(CanvasRenderingContext2D*); |
| 344 | 344 |
| 345 void forcePluginPlaceholder(HTMLElement* plugin, PassRefPtrWillBeRawPtr<Docu
mentFragment>, ExceptionState&); | 345 void forcePluginPlaceholder(HTMLElement* plugin, PassRefPtrWillBeRawPtr<Docu
mentFragment>, ExceptionState&); |
| 346 void forcePluginPlaceholder(HTMLElement* plugin, const PluginPlaceholderOpti
ons&, ExceptionState&); | 346 void forcePluginPlaceholder(HTMLElement* plugin, const PluginPlaceholderOpti
ons&, ExceptionState&); |
| 347 | 347 |
| 348 // Scheudle a forced Blink GC run (Oilpan) at the end of event loop. | 348 void setScrollChain(ScrollState*, const WillBeHeapVector<RefPtrWillBeMember<
Element>>& elements, ExceptionState&); |
| 349 |
| 350 // Schedule a forced Blink GC run (Oilpan) at the end of event loop. |
| 349 // Note: This is designed to be only used from PerformanceTests/BlinkGC to e
xplicitly measure only Blink GC time. | 351 // Note: This is designed to be only used from PerformanceTests/BlinkGC to e
xplicitly measure only Blink GC time. |
| 350 // Normal LayoutTests should use gc() instead as it would trigger both
Blink GC and V8 GC. | 352 // Normal LayoutTests should use gc() instead as it would trigger both
Blink GC and V8 GC. |
| 351 void forceBlinkGCWithoutV8GC(); | 353 void forceBlinkGCWithoutV8GC(); |
| 352 | 354 |
| 353 String selectedHTMLForClipboard(); | 355 String selectedHTMLForClipboard(); |
| 354 String selectedTextForClipboard(); | 356 String selectedTextForClipboard(); |
| 355 | 357 |
| 356 void setVisualViewportOffset(int x, int y); | 358 void setVisualViewportOffset(int x, int y); |
| 357 | 359 |
| 358 // Return true if the given use counter exists for the given document. | 360 // Return true if the given use counter exists for the given document. |
| (...skipping 16 matching lines...) Expand all Loading... |
| 375 | 377 |
| 376 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 378 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
| 377 Member<InternalRuntimeFlags> m_runtimeFlags; | 379 Member<InternalRuntimeFlags> m_runtimeFlags; |
| 378 | 380 |
| 379 IterationSource* startIteration(ScriptState*, ExceptionState&) override; | 381 IterationSource* startIteration(ScriptState*, ExceptionState&) override; |
| 380 }; | 382 }; |
| 381 | 383 |
| 382 } // namespace blink | 384 } // namespace blink |
| 383 | 385 |
| 384 #endif // Internals_h | 386 #endif // Internals_h |
| OLD | NEW |