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

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

Issue 13467028: Add an intermediate function to generate 2 paint-order lists. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: addressing review comments Created 7 years, 8 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/rendering/RenderLayer.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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 210
211 enum { 211 enum {
212 // Values need to be kept in sync with Internals.idl. 212 // Values need to be kept in sync with Internals.idl.
213 LAYER_TREE_INCLUDES_VISIBLE_RECTS = 1, 213 LAYER_TREE_INCLUDES_VISIBLE_RECTS = 1,
214 LAYER_TREE_INCLUDES_TILE_CACHES = 2, 214 LAYER_TREE_INCLUDES_TILE_CACHES = 2,
215 LAYER_TREE_INCLUDES_REPAINT_RECTS = 4, 215 LAYER_TREE_INCLUDES_REPAINT_RECTS = 4,
216 LAYER_TREE_INCLUDES_PAINTING_PHASES = 8 216 LAYER_TREE_INCLUDES_PAINTING_PHASES = 8
217 }; 217 };
218 String layerTreeAsText(Document*, unsigned flags, ExceptionCode&) const; 218 String layerTreeAsText(Document*, unsigned flags, ExceptionCode&) const;
219 String layerTreeAsText(Document*, ExceptionCode&) const; 219 String layerTreeAsText(Document*, ExceptionCode&) const;
220
221 PassRefPtr<NodeList> paintOrderListBeforePromote(Element* element, Exception Code& ec);
222 PassRefPtr<NodeList> paintOrderListAfterPromote(Element* element, ExceptionC ode& ec);
223
220 String repaintRectsAsText(Document*, ExceptionCode&) const; 224 String repaintRectsAsText(Document*, ExceptionCode&) const;
221 String scrollingStateTreeAsText(Document*, ExceptionCode&) const; 225 String scrollingStateTreeAsText(Document*, ExceptionCode&) const;
222 String mainThreadScrollingReasons(Document*, ExceptionCode&) const; 226 String mainThreadScrollingReasons(Document*, ExceptionCode&) const;
223 PassRefPtr<ClientRectList> nonFastScrollableRects(Document*, ExceptionCode&) const; 227 PassRefPtr<ClientRectList> nonFastScrollableRects(Document*, ExceptionCode&) const;
224 228
225 void garbageCollectDocumentResources(Document*, ExceptionCode&) const; 229 void garbageCollectDocumentResources(Document*, ExceptionCode&) const;
226 230
227 void allowRoundingHacks() const; 231 void allowRoundingHacks() const;
228 232
229 void insertAuthorCSS(Document*, const String&) const; 233 void insertAuthorCSS(Document*, const String&) const;
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 Vector<String> iconURLs(Document*, int iconTypesMask) const; 299 Vector<String> iconURLs(Document*, int iconTypesMask) const;
296 300
297 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionCode&); 301 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionCode&);
298 RefPtr<DOMWindow> m_frontendWindow; 302 RefPtr<DOMWindow> m_frontendWindow;
299 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; 303 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel;
300 }; 304 };
301 305
302 } // namespace WebCore 306 } // namespace WebCore
303 307
304 #endif 308 #endif
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderLayer.cpp ('k') | Source/core/testing/Internals.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698