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 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 Loading... |
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 |
OLD | NEW |