| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 // Values need to be kept in sync with Internals.idl. | 204 // Values need to be kept in sync with Internals.idl. |
| 205 LAYER_TREE_INCLUDES_VISIBLE_RECTS = 1, | 205 LAYER_TREE_INCLUDES_VISIBLE_RECTS = 1, |
| 206 LAYER_TREE_INCLUDES_TILE_CACHES = 2, | 206 LAYER_TREE_INCLUDES_TILE_CACHES = 2, |
| 207 LAYER_TREE_INCLUDES_REPAINT_RECTS = 4 | 207 LAYER_TREE_INCLUDES_REPAINT_RECTS = 4 |
| 208 | 208 |
| 209 }; | 209 }; |
| 210 String layerTreeAsText(Document*, unsigned flags, ExceptionCode&) const; | 210 String layerTreeAsText(Document*, unsigned flags, ExceptionCode&) const; |
| 211 String layerTreeAsText(Document*, ExceptionCode&) const; | 211 String layerTreeAsText(Document*, ExceptionCode&) const; |
| 212 String repaintRectsAsText(Document*, ExceptionCode&) const; | 212 String repaintRectsAsText(Document*, ExceptionCode&) const; |
| 213 String scrollingStateTreeAsText(Document*, ExceptionCode&) const; | 213 String scrollingStateTreeAsText(Document*, ExceptionCode&) const; |
| 214 | |
| 215 String mainThreadScrollingReasons(Document*, ExceptionCode&) const; | 214 String mainThreadScrollingReasons(Document*, ExceptionCode&) const; |
| 215 PassRefPtr<ClientRectList> nonFastScrollableRects(Document*, ExceptionCode&)
const; |
| 216 | 216 |
| 217 void garbageCollectDocumentResources(Document*, ExceptionCode&) const; | 217 void garbageCollectDocumentResources(Document*, ExceptionCode&) const; |
| 218 | 218 |
| 219 void allowRoundingHacks() const; | 219 void allowRoundingHacks() const; |
| 220 | 220 |
| 221 void insertAuthorCSS(Document*, const String&) const; | 221 void insertAuthorCSS(Document*, const String&) const; |
| 222 void insertUserCSS(Document*, const String&) const; | 222 void insertUserCSS(Document*, const String&) const; |
| 223 | 223 |
| 224 #if ENABLE(INSPECTOR) | 224 #if ENABLE(INSPECTOR) |
| 225 unsigned numberOfLiveNodes() const; | 225 unsigned numberOfLiveNodes() const; |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionCode&); | 274 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionCode&); |
| 275 #if ENABLE(INSPECTOR) | 275 #if ENABLE(INSPECTOR) |
| 276 RefPtr<DOMWindow> m_frontendWindow; | 276 RefPtr<DOMWindow> m_frontendWindow; |
| 277 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; | 277 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; |
| 278 #endif | 278 #endif |
| 279 }; | 279 }; |
| 280 | 280 |
| 281 } // namespace WebCore | 281 } // namespace WebCore |
| 282 | 282 |
| 283 #endif | 283 #endif |
| OLD | NEW |