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

Side by Side Diff: Source/core/testing/Internals.idl

Issue 54273005: DevTools: add ids to compositor frames (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 136
137 [RaisesException] unsigned long wheelEventHandlerCount(Document document); 137 [RaisesException] unsigned long wheelEventHandlerCount(Document document);
138 [RaisesException] unsigned long touchEventHandlerCount(Document document); 138 [RaisesException] unsigned long touchEventHandlerCount(Document document);
139 [RaisesException] LayerRectList touchEventTargetLayerRects(Document document ); 139 [RaisesException] LayerRectList touchEventTargetLayerRects(Document document );
140 140
141 141
142 [RaisesException] NodeList nodesFromRect(Document document, long x, long y, 142 [RaisesException] NodeList nodesFromRect(Document document, long x, long y,
143 unsigned long topPadding, unsigned long rightPadding, unsigned long bott omPadding, unsigned long leftPadding, 143 unsigned long topPadding, unsigned long rightPadding, unsigned long bott omPadding, unsigned long leftPadding,
144 boolean ignoreClipping, boolean allowShadowContent, boolean allowChildFr ameContent); 144 boolean ignoreClipping, boolean allowShadowContent, boolean allowChildFr ameContent);
145 145
146 void emitInspectorDidBeginFrame(); 146 void emitInspectorDidBeginFrame(optional long frameId);
147 void emitInspectorDidCancelFrame(); 147 void emitInspectorDidCancelFrame();
148 148
149 [RaisesException] boolean hasSpellingMarker(Document document, long from, lo ng length); 149 [RaisesException] boolean hasSpellingMarker(Document document, long from, lo ng length);
150 [RaisesException] boolean hasGrammarMarker(Document document, long from, lon g length); 150 [RaisesException] boolean hasGrammarMarker(Document document, long from, lon g length);
151 [RaisesException] void setContinuousSpellCheckingEnabled(boolean enabled); 151 [RaisesException] void setContinuousSpellCheckingEnabled(boolean enabled);
152 152
153 [RaisesException] boolean isOverwriteModeEnabled(Document document); 153 [RaisesException] boolean isOverwriteModeEnabled(Document document);
154 [RaisesException] void toggleOverwriteModeEnabled(Document document); 154 [RaisesException] void toggleOverwriteModeEnabled(Document document);
155 155
156 [RaisesException] unsigned long numberOfScrollableAreas(Document document); 156 [RaisesException] unsigned long numberOfScrollableAreas(Document document);
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 void forceReload(boolean endToEnd); 254 void forceReload(boolean endToEnd);
255 255
256 [RaisesException] DOMString getImageSourceURL(Element element); 256 [RaisesException] DOMString getImageSourceURL(Element element);
257 257
258 boolean isSelectPopupVisible(Node node); 258 boolean isSelectPopupVisible(Node node);
259 259
260 [RaisesException] ClientRect selectionBounds(); 260 [RaisesException] ClientRect selectionBounds();
261 261
262 boolean loseSharedGraphicsContext3D(); 262 boolean loseSharedGraphicsContext3D();
263 }; 263 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698