| 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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 [RaisesException, TypeChecking=Interface] ClientRectList nonFastScrollableRe
cts(Document document); | 176 [RaisesException, TypeChecking=Interface] ClientRectList nonFastScrollableRe
cts(Document document); |
| 177 | 177 |
| 178 [TypeChecking=Interface] void garbageCollectDocumentResources(Document docum
ent); | 178 [TypeChecking=Interface] void garbageCollectDocumentResources(Document docum
ent); |
| 179 void evictAllResources(); | 179 void evictAllResources(); |
| 180 | 180 |
| 181 unsigned long numberOfLiveNodes(); | 181 unsigned long numberOfLiveNodes(); |
| 182 unsigned long numberOfLiveDocuments(); | 182 unsigned long numberOfLiveDocuments(); |
| 183 DOMString dumpRefCountedInstanceCounts(); | 183 DOMString dumpRefCountedInstanceCounts(); |
| 184 sequence<DOMString> consoleMessageArgumentCounts(Document document); | 184 sequence<DOMString> consoleMessageArgumentCounts(Document document); |
| 185 unsigned long[] setMemoryCacheCapacities(unsigned long minDeadBytes, unsigne
d long maxDeadBytes, unsigned long totalBytes); | 185 unsigned long[] setMemoryCacheCapacities(unsigned long minDeadBytes, unsigne
d long maxDeadBytes, unsigned long totalBytes); |
| 186 [RaisesException] DOMString inspectorHighlightJSON(Node node); | |
| 187 | 186 |
| 188 DOMString counterValue(Element element); | 187 DOMString counterValue(Element element); |
| 189 long pageNumber(Element element, optional float pageWidth, optional float pa
geHeight); | 188 long pageNumber(Element element, optional float pageWidth, optional float pa
geHeight); |
| 190 DOMString[] shortcutIconURLs(Document document); | 189 DOMString[] shortcutIconURLs(Document document); |
| 191 DOMString[] allIconURLs(Document document); | 190 DOMString[] allIconURLs(Document document); |
| 192 long numberOfPages(optional double pageWidthInPixels, optional double pageHe
ightInPixels); | 191 long numberOfPages(optional double pageWidthInPixels, optional double pageHe
ightInPixels); |
| 193 [RaisesException] DOMString pageProperty(DOMString propertyName, long pageNu
mber); | 192 [RaisesException] DOMString pageProperty(DOMString propertyName, long pageNu
mber); |
| 194 [RaisesException] DOMString pageSizeAndMarginsInPixels(long pageIndex, long
width, long height, long marginTop, long marginRight, long marginBottom, long ma
rginLeft); | 193 [RaisesException] DOMString pageSizeAndMarginsInPixels(long pageIndex, long
width, long height, long marginTop, long marginRight, long marginBottom, long ma
rginLeft); |
| 195 | 194 |
| 196 [RaisesException] void setDeviceScaleFactor(float scaleFactor); | 195 [RaisesException] void setDeviceScaleFactor(float scaleFactor); |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl
ement plugin, DocumentFragment fragment); | 293 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl
ement plugin, DocumentFragment fragment); |
| 295 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl
ement plugin, PluginPlaceholderOptions options); | 294 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl
ement plugin, PluginPlaceholderOptions options); |
| 296 | 295 |
| 297 DictionaryTest dictionaryTest(); | 296 DictionaryTest dictionaryTest(); |
| 298 UnionTypesTest unionTypesTest(); | 297 UnionTypesTest unionTypesTest(); |
| 299 | 298 |
| 300 void forceBlinkGCWithoutV8GC(); | 299 void forceBlinkGCWithoutV8GC(); |
| 301 | 300 |
| 302 iterable<long>; | 301 iterable<long>; |
| 303 }; | 302 }; |
| OLD | NEW |