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