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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 Loading... |
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 |
OLD | NEW |