| 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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 void resumeAnimations(in Document document) raises (DOMException); | 164 void resumeAnimations(in Document document) raises (DOMException); |
| 165 | 165 |
| 166 // Flags for layerTreeAsText. | 166 // Flags for layerTreeAsText. |
| 167 const unsigned short LAYER_TREE_INCLUDES_VISIBLE_RECTS = 1; | 167 const unsigned short LAYER_TREE_INCLUDES_VISIBLE_RECTS = 1; |
| 168 const unsigned short LAYER_TREE_INCLUDES_TILE_CACHES = 2; | 168 const unsigned short LAYER_TREE_INCLUDES_TILE_CACHES = 2; |
| 169 const unsigned short LAYER_TREE_INCLUDES_REPAINT_RECTS = 4; | 169 const unsigned short LAYER_TREE_INCLUDES_REPAINT_RECTS = 4; |
| 170 DOMString layerTreeAsText(in Document document, in [Optional] unsigned short
flags) raises (DOMException); | 170 DOMString layerTreeAsText(in Document document, in [Optional] unsigned short
flags) raises (DOMException); |
| 171 | 171 |
| 172 DOMString scrollingStateTreeAsText(in Document document) raises (DOMExceptio
n); | 172 DOMString scrollingStateTreeAsText(in Document document) raises (DOMExceptio
n); |
| 173 DOMString mainThreadScrollingReasons(in Document document) raises (DOMExcept
ion); | 173 DOMString mainThreadScrollingReasons(in Document document) raises (DOMExcept
ion); |
| 174 ClientRectList nonFastScrollableRects(in Document document) raises (DOMExcep
tion); |
| 174 | 175 |
| 175 DOMString repaintRectsAsText(in Document document) raises (DOMException); | 176 DOMString repaintRectsAsText(in Document document) raises (DOMException); |
| 176 | 177 |
| 177 void garbageCollectDocumentResources(in Document document) raises (DOMExcept
ion); | 178 void garbageCollectDocumentResources(in Document document) raises (DOMExcept
ion); |
| 178 | 179 |
| 179 void allowRoundingHacks(); | 180 void allowRoundingHacks(); |
| 180 | 181 |
| 181 void insertAuthorCSS(in Document document, in DOMString css); | 182 void insertAuthorCSS(in Document document, in DOMString css); |
| 182 void insertUserCSS(in Document document, in DOMString css); | 183 void insertUserCSS(in Document document, in DOMString css); |
| 183 | 184 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 void stopTrackingRepaints(in Document document) raises (DOMException); | 227 void stopTrackingRepaints(in Document document) raises (DOMException); |
| 227 | 228 |
| 228 // Returns a string with information about the mouse cursor used at the spec
ified client location. | 229 // Returns a string with information about the mouse cursor used at the spec
ified client location. |
| 229 DOMString getCurrentCursorInfo(in Document document) raises (DOMException); | 230 DOMString getCurrentCursorInfo(in Document document) raises (DOMException); |
| 230 | 231 |
| 231 SerializedScriptValue deserializeBuffer(in ArrayBuffer buffer); | 232 SerializedScriptValue deserializeBuffer(in ArrayBuffer buffer); |
| 232 ArrayBuffer serializeObject(in SerializedScriptValue obj); | 233 ArrayBuffer serializeObject(in SerializedScriptValue obj); |
| 233 | 234 |
| 234 void setUsesOverlayScrollbars(in boolean enabled); | 235 void setUsesOverlayScrollbars(in boolean enabled); |
| 235 }; | 236 }; |
| OLD | NEW |