Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(230)

Unified Diff: core/testing/Internals.idl

Issue 22498002: Roll IDL to multivm@1329 (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « core/testing/InternalSettings.idl ('k') | core/testing/LayerRect.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/testing/Internals.idl
diff --git a/core/testing/Internals.idl b/core/testing/Internals.idl
index e91ad019f8cd3a5730dbbdeff6e312a35e907695..cabcf1fa01924e4a2532c7be406415df0e1bd9b5 100644
--- a/core/testing/Internals.idl
+++ b/core/testing/Internals.idl
@@ -85,6 +85,8 @@
[RaisesException] void setEnableMockPagePopup(boolean enabled);
readonly attribute PagePopupController pagePopupController;
+ [RaisesException] ClientRect unscaledViewportRect();
+
[RaisesException] ClientRect absoluteCaretBounds();
[RaisesException] ClientRect boundingBox(Element element);
@@ -137,7 +139,8 @@
[RaisesException] unsigned long wheelEventHandlerCount(Document document);
[RaisesException] unsigned long touchEventHandlerCount(Document document);
- [RaisesException] ClientRectList touchEventTargetClientRects(Document document);
+ [RaisesException] LayerRectList touchEventTargetLayerRects(Document document);
+ [RaisesException] unsigned long touchEventTargetLayerRectsUpdateCount(Document document);
[RaisesException] NodeList nodesFromRect(Document document, long x, long y,
unsigned long topPadding, unsigned long rightPadding, unsigned long bottomPadding, unsigned long leftPadding,
@@ -158,6 +161,7 @@
[RaisesException] boolean isPageBoxVisible(Document document, long pageNumber);
readonly attribute InternalSettings settings;
+ readonly attribute InternalProfilers profilers;
readonly attribute InternalRuntimeFlags runtimeFlags;
readonly attribute unsigned long workerThreadCount;
@@ -165,6 +169,7 @@
// The values of these constants must be kept in sync with the values of LayerTreeAsTextBehaviorFlags in GraphicsLayerClient.h.
const unsigned short LAYER_TREE_INCLUDES_REPAINT_RECTS = 2;
const unsigned short LAYER_TREE_INCLUDES_PAINTING_PHASES = 4;
+ const unsigned short LAYER_TREE_INCLUDES_ROOT_LAYER = 8;
[RaisesException] DOMString layerTreeAsText(Document document, optional unsigned short flags);
[RaisesException] DOMString elementLayerTreeAsText(Element element, optional unsigned short flags);
@@ -184,6 +189,7 @@
[RaisesException] DOMString repaintRectsAsText(Document document);
[RaisesException] void garbageCollectDocumentResources(Document document);
+ void evictAllResources();
void allowRoundingHacks();
@@ -195,6 +201,7 @@
sequence<DOMString> consoleMessageArgumentCounts(Document document);
Window openDummyInspectorFrontend(DOMString url);
void closeDummyInspectorFrontend();
+ unsigned long[] setMemoryCacheCapacities(unsigned long minDeadBytes, unsigned long maxDeadBytes, unsigned long totalBytes);
[RaisesException] void setInspectorResourcesDataSizeLimits(long maximumResourcesContentSize, long maximumSingleResourceContentSize);
DOMString counterValue(Element element);
@@ -233,6 +240,8 @@
[RaisesException] DOMString markerTextForListItem(Element element);
+ [RaisesException] DOMString baseURL(Document document);
+
SerializedScriptValue deserializeBuffer(ArrayBuffer buffer);
ArrayBuffer serializeObject(SerializedScriptValue obj);
@@ -247,4 +256,6 @@
boolean isSelectPopupVisible(Node node);
[RaisesException] ClientRect selectionBounds();
+
+ boolean loseSharedGraphicsContext3D();
};
« no previous file with comments | « core/testing/InternalSettings.idl ('k') | core/testing/LayerRect.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698