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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
320 void setFocused(bool); | 320 void setFocused(bool); |
321 void setInitialFocus(bool); | 321 void setInitialFocus(bool); |
322 | 322 |
323 bool ignoreLayoutWithPendingStylesheets(Document*); | 323 bool ignoreLayoutWithPendingStylesheets(Document*); |
324 | 324 |
325 void setNetworkStateNotifierTestOnly(bool); | 325 void setNetworkStateNotifierTestOnly(bool); |
326 // Test must call setNetworkStateNotifierTestOnly(true) before calling setNe
tworkConnectionInfo. | 326 // Test must call setNetworkStateNotifierTestOnly(true) before calling setNe
tworkConnectionInfo. |
327 void setNetworkConnectionInfo(const String&, ExceptionState&); | 327 void setNetworkConnectionInfo(const String&, ExceptionState&); |
328 | 328 |
329 ClientRect* boundsInViewportSpace(Element*); | 329 ClientRect* boundsInViewportSpace(Element*); |
330 String serializeNavigationMarkup(); | |
331 Vector<String> getTransitionElementIds(); | |
332 ClientRectList* getTransitionElementRects(); | |
333 void hideAllTransitionElements(); | |
334 void showAllTransitionElements(); | |
335 void setExitTransitionStylesheetsEnabled(bool); | |
336 | 330 |
337 unsigned countHitRegions(CanvasRenderingContext2D*); | 331 unsigned countHitRegions(CanvasRenderingContext2D*); |
338 | 332 |
339 void forcePluginPlaceholder(HTMLElement* plugin, PassRefPtrWillBeRawPtr<Docu
mentFragment>, ExceptionState&); | 333 void forcePluginPlaceholder(HTMLElement* plugin, PassRefPtrWillBeRawPtr<Docu
mentFragment>, ExceptionState&); |
340 void forcePluginPlaceholder(HTMLElement* plugin, const PluginPlaceholderOpti
ons&, ExceptionState&); | 334 void forcePluginPlaceholder(HTMLElement* plugin, const PluginPlaceholderOpti
ons&, ExceptionState&); |
341 | 335 |
342 // Scheudle a forced Blink GC run (Oilpan) at the end of event loop. | 336 // Scheudle a forced Blink GC run (Oilpan) at the end of event loop. |
343 // Note: This is designed to be only used from PerformanceTests/BlinkGC to e
xplicitly measure only Blink GC time. | 337 // Note: This is designed to be only used from PerformanceTests/BlinkGC to e
xplicitly measure only Blink GC time. |
344 // Normal LayoutTests should use gc() instead as it would trigger both
Blink GC and V8 GC. | 338 // Normal LayoutTests should use gc() instead as it would trigger both
Blink GC and V8 GC. |
345 void forceBlinkGCWithoutV8GC(); | 339 void forceBlinkGCWithoutV8GC(); |
(...skipping 21 matching lines...) Expand all Loading... |
367 | 361 |
368 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 362 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
369 Member<InternalRuntimeFlags> m_runtimeFlags; | 363 Member<InternalRuntimeFlags> m_runtimeFlags; |
370 | 364 |
371 IterationSource* startIteration(ScriptState*, ExceptionState&) override; | 365 IterationSource* startIteration(ScriptState*, ExceptionState&) override; |
372 }; | 366 }; |
373 | 367 |
374 } // namespace blink | 368 } // namespace blink |
375 | 369 |
376 #endif // Internals_h | 370 #endif // Internals_h |
OLD | NEW |