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. |
11 * 2. Redistributions in binary form must reproduce the above copyright | 11 * 2. Redistributions in binary form must reproduce the above copyright |
12 * notice, this list of conditions and the following disclaimer in the | 12 * notice, this list of conditions and the following disclaimer in the |
13 * documentation and/or other materials provided with the distribution. | 13 * documentation and/or other materials provided with the distribution. |
14 * | 14 * |
15 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY | 15 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY |
16 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | 16 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
17 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | 17 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
18 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY | 18 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY |
19 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | 19 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
20 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 20 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
21 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 21 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
22 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 22 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
25 */ | 25 */ |
26 | 26 |
27 [ | 27 [ |
28 DoNotCheckConstants | |
Xianzhu
2013/06/11 22:25:03
This is required otherwise the idl compiler will g
| |
28 ] interface Internals { | 29 ] interface Internals { |
29 DOMString address(Node node); | 30 DOMString address(Node node); |
30 | 31 |
31 [RaisesException] DOMString elementRenderTreeAsText(Element element); | 32 [RaisesException] DOMString elementRenderTreeAsText(Element element); |
32 boolean isPreloaded(DOMString url); | 33 boolean isPreloaded(DOMString url); |
33 boolean isLoadingFromMemoryCache(DOMString url); | 34 boolean isLoadingFromMemoryCache(DOMString url); |
34 | 35 |
35 void crash(); | 36 void crash(); |
36 | 37 |
37 [RaisesException] unsigned long numberOfScopedHTMLStyleChildren(Node scope); | 38 [RaisesException] unsigned long numberOfScopedHTMLStyleChildren(Node scope); |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
154 | 155 |
155 [RaisesException] unsigned long numberOfScrollableAreas(Document document); | 156 [RaisesException] unsigned long numberOfScrollableAreas(Document document); |
156 | 157 |
157 [RaisesException] boolean isPageBoxVisible(Document document, long pageNumbe r); | 158 [RaisesException] boolean isPageBoxVisible(Document document, long pageNumbe r); |
158 | 159 |
159 readonly attribute InternalSettings settings; | 160 readonly attribute InternalSettings settings; |
160 readonly attribute InternalRuntimeFlags runtimeFlags; | 161 readonly attribute InternalRuntimeFlags runtimeFlags; |
161 readonly attribute unsigned long workerThreadCount; | 162 readonly attribute unsigned long workerThreadCount; |
162 | 163 |
163 // Flags for layerTreeAsText. | 164 // Flags for layerTreeAsText. |
164 const unsigned short LAYER_TREE_INCLUDES_VISIBLE_RECTS = 1; | 165 // 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_TILE_CACHES = 2; | 166 const unsigned short LAYER_TREE_INCLUDES_REPAINT_RECTS = 2; |
166 const unsigned short LAYER_TREE_INCLUDES_REPAINT_RECTS = 4; | 167 const unsigned short LAYER_TREE_INCLUDES_PAINTING_PHASES = 4; |
167 const unsigned short LAYER_TREE_INCLUDES_PAINTING_PHASES = 8; | |
168 [RaisesException] DOMString layerTreeAsText(Document document, optional unsi gned short flags); | 168 [RaisesException] DOMString layerTreeAsText(Document document, optional unsi gned short flags); |
169 | 169 |
170 [RaisesException] NodeList paintOrderListBeforePromote(Element element); | 170 [RaisesException] NodeList paintOrderListBeforePromote(Element element); |
171 [RaisesException] NodeList paintOrderListAfterPromote(Element element); | 171 [RaisesException] NodeList paintOrderListAfterPromote(Element element); |
172 | 172 |
173 // The values of these constants must be kept in sync with those in RenderLa yer. | 173 // The values of these constants must be kept in sync with those in RenderLa yer. |
174 const unsigned short DoNotForceCompositedScrolling = 0; | 174 const unsigned short DO_NOT_FORCE_COMPOSITED_SCROLLING = 0; |
175 const unsigned short CompositedScrollingAlwaysOn = 1; | 175 const unsigned short COMPOSITED_SCROLLING_ALWAYS_ON = 1; |
176 const unsigned short CompositedScrollingAlwaysOff = 2; | 176 const unsigned short COMPOSITED_SCROLLING_ALWAYS_OFF = 2; |
177 [RaisesException] void setNeedsCompositedScrolling(Element element, unsigned short value); | 177 [RaisesException] void setNeedsCompositedScrolling(Element element, unsigned short value); |
178 | 178 |
179 [RaisesException] DOMString scrollingStateTreeAsText(Document document); | 179 [RaisesException] DOMString scrollingStateTreeAsText(Document document); |
180 [RaisesException] DOMString mainThreadScrollingReasons(Document document); | 180 [RaisesException] DOMString mainThreadScrollingReasons(Document document); |
181 [RaisesException] ClientRectList nonFastScrollableRects(Document document); | 181 [RaisesException] ClientRectList nonFastScrollableRects(Document document); |
182 | 182 |
183 [RaisesException] DOMString repaintRectsAsText(Document document); | 183 [RaisesException] DOMString repaintRectsAsText(Document document); |
184 | 184 |
185 [RaisesException] void garbageCollectDocumentResources(Document document); | 185 [RaisesException] void garbageCollectDocumentResources(Document document); |
186 | 186 |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
240 void forceReload(boolean endToEnd); | 240 void forceReload(boolean endToEnd); |
241 | 241 |
242 [Conditional=ENCRYPTED_MEDIA_V2] void initializeMockCDM(); | 242 [Conditional=ENCRYPTED_MEDIA_V2] void initializeMockCDM(); |
243 | 243 |
244 void enableMockSpeechSynthesizer(); | 244 void enableMockSpeechSynthesizer(); |
245 | 245 |
246 [RaisesException] DOMString getImageSourceURL(Element element); | 246 [RaisesException] DOMString getImageSourceURL(Element element); |
247 | 247 |
248 boolean isSelectPopupVisible(Node node); | 248 boolean isSelectPopupVisible(Node node); |
249 }; | 249 }; |
OLD | NEW |