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

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: fix rebase mistake 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
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 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 212
213 enum { 213 enum {
214 // Values need to be kept in sync with Internals.idl. 214 // Values need to be kept in sync with Internals.idl.
215 LAYER_TREE_INCLUDES_VISIBLE_RECTS = 1, 215 LAYER_TREE_INCLUDES_VISIBLE_RECTS = 1,
216 LAYER_TREE_INCLUDES_TILE_CACHES = 2, 216 LAYER_TREE_INCLUDES_TILE_CACHES = 2,
217 LAYER_TREE_INCLUDES_REPAINT_RECTS = 4, 217 LAYER_TREE_INCLUDES_REPAINT_RECTS = 4,
218 LAYER_TREE_INCLUDES_PAINTING_PHASES = 8 218 LAYER_TREE_INCLUDES_PAINTING_PHASES = 8
219 }; 219 };
220 String layerTreeAsText(Document*, unsigned flags, ExceptionCode&) const; 220 String layerTreeAsText(Document*, unsigned flags, ExceptionCode&) const;
221 String layerTreeAsText(Document*, ExceptionCode&) const; 221 String layerTreeAsText(Document*, ExceptionCode&) const;
222
223 PassRefPtr<NodeList> paintOrderListBeforePromote(Element* element, Exception Code& ec);
224 PassRefPtr<NodeList> paintOrderListAfterPromote(Element* element, ExceptionC ode& ec);
225
222 String repaintRectsAsText(Document*, ExceptionCode&) const; 226 String repaintRectsAsText(Document*, ExceptionCode&) const;
223 String scrollingStateTreeAsText(Document*, ExceptionCode&) const; 227 String scrollingStateTreeAsText(Document*, ExceptionCode&) const;
224 String mainThreadScrollingReasons(Document*, ExceptionCode&) const; 228 String mainThreadScrollingReasons(Document*, ExceptionCode&) const;
225 PassRefPtr<ClientRectList> nonFastScrollableRects(Document*, ExceptionCode&) const; 229 PassRefPtr<ClientRectList> nonFastScrollableRects(Document*, ExceptionCode&) const;
226 230
227 void garbageCollectDocumentResources(Document*, ExceptionCode&) const; 231 void garbageCollectDocumentResources(Document*, ExceptionCode&) const;
228 232
229 void allowRoundingHacks() const; 233 void allowRoundingHacks() const;
230 234
231 void insertAuthorCSS(Document*, const String&) const; 235 void insertAuthorCSS(Document*, const String&) const;
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 Vector<String> iconURLs(Document*, int iconTypesMask) const; 301 Vector<String> iconURLs(Document*, int iconTypesMask) const;
298 302
299 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionCode&); 303 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionCode&);
300 RefPtr<DOMWindow> m_frontendWindow; 304 RefPtr<DOMWindow> m_frontendWindow;
301 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; 305 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel;
302 }; 306 };
303 307
304 } // namespace WebCore 308 } // namespace WebCore
305 309
306 #endif 310 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698