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

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

Issue 17471008: Rework compositor touch hit testing (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: CR feedback - accumulate LayoutRects instead of IntRects, disable when page isn't composited. Also… Created 7 years, 5 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 unified diff | Download patch
« no previous file with comments | « Source/core/testing/Internals.cpp ('k') | Source/core/testing/LayerRect.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 [RaisesException] ClientRect bestZoomableAreaForTouchPoint(long x, long y, l ong width, long height, Document document); 132 [RaisesException] ClientRect bestZoomableAreaForTouchPoint(long x, long y, l ong width, long height, Document document);
133 133
134 [RaisesException] long lastSpellCheckRequestSequence(Document document); 134 [RaisesException] long lastSpellCheckRequestSequence(Document document);
135 [RaisesException] long lastSpellCheckProcessedSequence(Document document); 135 [RaisesException] long lastSpellCheckProcessedSequence(Document document);
136 136
137 sequence<DOMString> userPreferredLanguages(); 137 sequence<DOMString> userPreferredLanguages();
138 void setUserPreferredLanguages(sequence<DOMString> languages); 138 void setUserPreferredLanguages(sequence<DOMString> languages);
139 139
140 [RaisesException] unsigned long wheelEventHandlerCount(Document document); 140 [RaisesException] unsigned long wheelEventHandlerCount(Document document);
141 [RaisesException] unsigned long touchEventHandlerCount(Document document); 141 [RaisesException] unsigned long touchEventHandlerCount(Document document);
142 [RaisesException] ClientRectList touchEventTargetClientRects(Document docume nt); 142 [RaisesException] LayerRectList touchEventTargetLayerRects(Document document );
143 [RaisesException] unsigned long touchEventTargetLayerRectsUpdateCount(Docume nt document);
143 144
144 [RaisesException] NodeList nodesFromRect(Document document, long x, long y, 145 [RaisesException] NodeList nodesFromRect(Document document, long x, long y,
145 unsigned long topPadding, unsigned long rightPadding, unsigned long bott omPadding, unsigned long leftPadding, 146 unsigned long topPadding, unsigned long rightPadding, unsigned long bott omPadding, unsigned long leftPadding,
146 boolean ignoreClipping, boolean allowShadowContent, boolean allowChildFr ameContent); 147 boolean ignoreClipping, boolean allowShadowContent, boolean allowChildFr ameContent);
147 148
148 void emitInspectorDidBeginFrame(); 149 void emitInspectorDidBeginFrame();
149 void emitInspectorDidCancelFrame(); 150 void emitInspectorDidCancelFrame();
150 151
151 [RaisesException] boolean hasSpellingMarker(Document document, long from, lo ng length); 152 [RaisesException] boolean hasSpellingMarker(Document document, long from, lo ng length);
152 [RaisesException] boolean hasGrammarMarker(Document document, long from, lon g length); 153 [RaisesException] boolean hasGrammarMarker(Document document, long from, lon g length);
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 void forceReload(boolean endToEnd); 250 void forceReload(boolean endToEnd);
250 251
251 void enableMockSpeechSynthesizer(); 252 void enableMockSpeechSynthesizer();
252 253
253 [RaisesException] DOMString getImageSourceURL(Element element); 254 [RaisesException] DOMString getImageSourceURL(Element element);
254 255
255 boolean isSelectPopupVisible(Node node); 256 boolean isSelectPopupVisible(Node node);
256 257
257 [RaisesException] ClientRect selectionBounds(); 258 [RaisesException] ClientRect selectionBounds();
258 }; 259 };
OLDNEW
« no previous file with comments | « Source/core/testing/Internals.cpp ('k') | Source/core/testing/LayerRect.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698