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

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

Issue 14858004: Clean up the way layout tests force elements to opt in/out of composited scrolling. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: . Created 7 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
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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 enum { 210 enum {
211 // Values need to be kept in sync with Internals.idl. 211 // Values need to be kept in sync with Internals.idl.
212 LAYER_TREE_INCLUDES_VISIBLE_RECTS = 1, 212 LAYER_TREE_INCLUDES_VISIBLE_RECTS = 1,
213 LAYER_TREE_INCLUDES_TILE_CACHES = 2, 213 LAYER_TREE_INCLUDES_TILE_CACHES = 2,
214 LAYER_TREE_INCLUDES_REPAINT_RECTS = 4, 214 LAYER_TREE_INCLUDES_REPAINT_RECTS = 4,
215 LAYER_TREE_INCLUDES_PAINTING_PHASES = 8 215 LAYER_TREE_INCLUDES_PAINTING_PHASES = 8
216 }; 216 };
217 String layerTreeAsText(Document*, unsigned flags, ExceptionCode&) const; 217 String layerTreeAsText(Document*, unsigned flags, ExceptionCode&) const;
218 String layerTreeAsText(Document*, ExceptionCode&) const; 218 String layerTreeAsText(Document*, ExceptionCode&) const;
219 219
220 PassRefPtr<NodeList> paintOrderListBeforePromote(Element* element, Exception Code& ec); 220 PassRefPtr<NodeList> paintOrderListBeforePromote(Element*, ExceptionCode&);
221 PassRefPtr<NodeList> paintOrderListAfterPromote(Element* element, ExceptionC ode& ec); 221 PassRefPtr<NodeList> paintOrderListAfterPromote(Element*, ExceptionCode&);
222 222
223 String repaintRectsAsText(Document*, ExceptionCode&) const; 223 String repaintRectsAsText(Document*, ExceptionCode&) const;
224 String scrollingStateTreeAsText(Document*, ExceptionCode&) const; 224 String scrollingStateTreeAsText(Document*, ExceptionCode&) const;
225 String mainThreadScrollingReasons(Document*, ExceptionCode&) const; 225 String mainThreadScrollingReasons(Document*, ExceptionCode&) const;
226 PassRefPtr<ClientRectList> nonFastScrollableRects(Document*, ExceptionCode&) const; 226 PassRefPtr<ClientRectList> nonFastScrollableRects(Document*, ExceptionCode&) const;
227 227
228 void garbageCollectDocumentResources(Document*, ExceptionCode&) const; 228 void garbageCollectDocumentResources(Document*, ExceptionCode&) const;
229 229
230 void allowRoundingHacks() const; 230 void allowRoundingHacks() const;
231 231
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
299 299
300 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionCode&); 300 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionCode&);
301 RefPtr<DOMWindow> m_frontendWindow; 301 RefPtr<DOMWindow> m_frontendWindow;
302 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; 302 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel;
303 RefPtr<InternalRuntimeFlags> m_runtimeFlags; 303 RefPtr<InternalRuntimeFlags> m_runtimeFlags;
304 }; 304 };
305 305
306 } // namespace WebCore 306 } // namespace WebCore
307 307
308 #endif 308 #endif
OLDNEW
« Source/core/rendering/RenderLayer.cpp ('K') | « Source/core/testing/InternalSettings.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698