Chromium Code Reviews| 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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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] void setInspectorResourcesDataSizeLimits(long maximumResou rcesContentSize, long maximumSingleResourceContentSize); | 186 [RaisesException] void setInspectorResourcesDataSizeLimits(long maximumResou rcesContentSize, long maximumSingleResourceContentSize); |
| 187 [RaisesException] DOMString getInspectorHighlightJSON(Node node); | |
|
pfeldman
2014/10/24 13:30:00
nuke the get prefix.
dgozman
2014/10/24 14:45:21
Done.
| |
| 187 | 188 |
| 188 DOMString counterValue(Element element); | 189 DOMString counterValue(Element element); |
| 189 long pageNumber(Element element, optional float pageWidth, optional float pa geHeight); | 190 long pageNumber(Element element, optional float pageWidth, optional float pa geHeight); |
| 190 DOMString[] shortcutIconURLs(Document document); | 191 DOMString[] shortcutIconURLs(Document document); |
| 191 DOMString[] allIconURLs(Document document); | 192 DOMString[] allIconURLs(Document document); |
| 192 long numberOfPages(optional double pageWidthInPixels, optional double pageHe ightInPixels); | 193 long numberOfPages(optional double pageWidthInPixels, optional double pageHe ightInPixels); |
| 193 [RaisesException] DOMString pageProperty(DOMString propertyName, long pageNu mber); | 194 [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); | 195 [RaisesException] DOMString pageSizeAndMarginsInPixels(long pageIndex, long width, long height, long marginTop, long marginRight, long marginBottom, long ma rginLeft); |
| 195 | 196 |
| 196 [RaisesException] void setDeviceScaleFactor(float scaleFactor); | 197 [RaisesException] void setDeviceScaleFactor(float scaleFactor); |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 280 unsigned long countHitRegions(CanvasRenderingContext2D context); | 281 unsigned long countHitRegions(CanvasRenderingContext2D context); |
| 281 | 282 |
| 282 DOMString serializeNavigationMarkup(); | 283 DOMString serializeNavigationMarkup(); |
| 283 void hideAllTransitionElements(); | 284 void hideAllTransitionElements(); |
| 284 | 285 |
| 285 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl ement plugin, DocumentFragment fragment); | 286 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl ement plugin, DocumentFragment fragment); |
| 286 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl ement plugin, Dictionary options); | 287 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl ement plugin, Dictionary options); |
| 287 | 288 |
| 288 DictionaryTest dictionaryTest(); | 289 DictionaryTest dictionaryTest(); |
| 289 }; | 290 }; |
| OLD | NEW |