Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(29)

Side by Side Diff: Source/core/testing/Internals.h

Issue 1140153006: Remove Navigation Transitions from Blink. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Removed layout tests. Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/loader/LinkLoader.cpp ('k') | Source/core/testing/Internals.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/core/loader/LinkLoader.cpp ('k') | Source/core/testing/Internals.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698