| 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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 readonly attribute InternalSettings settings; | 158 readonly attribute InternalSettings settings; |
| 159 readonly attribute InternalRuntimeFlags runtimeFlags; | 159 readonly attribute InternalRuntimeFlags runtimeFlags; |
| 160 readonly attribute unsigned long workerThreadCount; | 160 readonly attribute unsigned long workerThreadCount; |
| 161 | 161 |
| 162 // Flags for layerTreeAsText. | 162 // Flags for layerTreeAsText. |
| 163 // The values of these constants must be kept in sync with the values of Lay
erTreeAsTextBehaviorFlags in GraphicsLayerClient.h. | 163 // The values of these constants must be kept in sync with the values of Lay
erTreeAsTextBehaviorFlags in GraphicsLayerClient.h. |
| 164 const unsigned short LAYER_TREE_INCLUDES_REPAINT_RECTS = 2; | 164 const unsigned short LAYER_TREE_INCLUDES_REPAINT_RECTS = 2; |
| 165 const unsigned short LAYER_TREE_INCLUDES_PAINTING_PHASES = 4; | 165 const unsigned short LAYER_TREE_INCLUDES_PAINTING_PHASES = 4; |
| 166 const unsigned short LAYER_TREE_INCLUDES_ROOT_LAYER = 8; | 166 const unsigned short LAYER_TREE_INCLUDES_ROOT_LAYER = 8; |
| 167 const unsigned short LAYER_TREE_INCLUDES_CLIP_AND_SCROLL_PARENTS = 16; | 167 const unsigned short LAYER_TREE_INCLUDES_CLIP_AND_SCROLL_PARENTS = 16; |
| 168 const unsigned short LAYER_TREE_INCLUDES_SCROLL_BLOCKS_ON = 32; |
| 168 [RaisesException, TypeChecking=Interface] DOMString layerTreeAsText(Document
document, optional unsigned short flags); | 169 [RaisesException, TypeChecking=Interface] DOMString layerTreeAsText(Document
document, optional unsigned short flags); |
| 169 [RaisesException, TypeChecking=Interface] DOMString elementLayerTreeAsText(E
lement element, optional unsigned short flags); | 170 [RaisesException, TypeChecking=Interface] DOMString elementLayerTreeAsText(E
lement element, optional unsigned short flags); |
| 170 | 171 |
| 171 [RaisesException, TypeChecking=Interface] boolean scrollsWithRespectTo(Eleme
nt element1, Element element2); | 172 [RaisesException, TypeChecking=Interface] boolean scrollsWithRespectTo(Eleme
nt element1, Element element2); |
| 172 | 173 |
| 173 [TypeChecking=Interface] DOMString scrollingStateTreeAsText(Document documen
t); | 174 [TypeChecking=Interface] DOMString scrollingStateTreeAsText(Document documen
t); |
| 174 [RaisesException, TypeChecking=Interface] DOMString mainThreadScrollingReaso
ns(Document document); | 175 [RaisesException, TypeChecking=Interface] DOMString mainThreadScrollingReaso
ns(Document document); |
| 175 [RaisesException, TypeChecking=Interface] ClientRectList nonFastScrollableRe
cts(Document document); | 176 [RaisesException, TypeChecking=Interface] ClientRectList nonFastScrollableRe
cts(Document document); |
| 176 | 177 |
| 177 [TypeChecking=Interface] void garbageCollectDocumentResources(Document docum
ent); | 178 [TypeChecking=Interface] void garbageCollectDocumentResources(Document docum
ent); |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl
ement plugin, DocumentFragment fragment); | 295 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl
ement plugin, DocumentFragment fragment); |
| 295 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl
ement plugin, PluginPlaceholderOptions options); | 296 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl
ement plugin, PluginPlaceholderOptions options); |
| 296 | 297 |
| 297 DictionaryTest dictionaryTest(); | 298 DictionaryTest dictionaryTest(); |
| 298 UnionTypesTest unionTypesTest(); | 299 UnionTypesTest unionTypesTest(); |
| 299 | 300 |
| 300 void forceBlinkGCWithoutV8GC(); | 301 void forceBlinkGCWithoutV8GC(); |
| 301 | 302 |
| 302 iterable<long>; | 303 iterable<long>; |
| 303 }; | 304 }; |
| OLD | NEW |