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

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

Issue 2916893003: Bookkeep the pointer event listeners added to page (Closed)
Patch Set: fix rebase error Created 3 years, 6 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 | « third_party/WebKit/Source/core/testing/Internals.cpp ('k') | no next file » | 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 sequence<DOMString> userPreferredLanguages(); 150 sequence<DOMString> userPreferredLanguages();
151 void setUserPreferredLanguages(sequence<DOMString> languages); 151 void setUserPreferredLanguages(sequence<DOMString> languages);
152 152
153 unsigned long mediaKeysCount(); 153 unsigned long mediaKeysCount();
154 unsigned long mediaKeySessionCount(); 154 unsigned long mediaKeySessionCount();
155 unsigned long suspendableObjectCount(Document document); 155 unsigned long suspendableObjectCount(Document document);
156 unsigned long wheelEventHandlerCount(Document document); 156 unsigned long wheelEventHandlerCount(Document document);
157 unsigned long scrollEventHandlerCount(Document document); 157 unsigned long scrollEventHandlerCount(Document document);
158 unsigned long touchStartOrMoveEventHandlerCount(Document document); 158 unsigned long touchStartOrMoveEventHandlerCount(Document document);
159 unsigned long touchEndOrCancelEventHandlerCount(Document document); 159 unsigned long touchEndOrCancelEventHandlerCount(Document document);
160 unsigned long pointerEventHandlerCount(Document document);
160 [RaisesException] LayerRectList touchEventTargetLayerRects(Document document ); 161 [RaisesException] LayerRectList touchEventTargetLayerRects(Document document );
161 162
162 [RaisesException] boolean executeCommand(Document document, DOMString name, DOMString value); 163 [RaisesException] boolean executeCommand(Document document, DOMString name, DOMString value);
163 164
164 DOMString htmlNamespace(); 165 DOMString htmlNamespace();
165 sequence<DOMString> htmlTags(); 166 sequence<DOMString> htmlTags();
166 DOMString svgNamespace(); 167 DOMString svgNamespace();
167 sequence<DOMString> svgTags(); 168 sequence<DOMString> svgTags();
168 169
169 [RaisesException] NodeList nodesFromRect(Document document, long x, long y, 170 [RaisesException] NodeList nodesFromRect(Document document, long x, long y,
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 DOMString getProgrammaticScrollAnimationState(Node node); 382 DOMString getProgrammaticScrollAnimationState(Node node);
382 383
383 ClientRect visualRect(Node node); 384 ClientRect visualRect(Node node);
384 385
385 OriginTrialsTest originTrialsTest(); 386 OriginTrialsTest originTrialsTest();
386 387
387 void crash(); 388 void crash();
388 389
389 void setIsLowEndDevice(boolean isLowEndDevice); 390 void setIsLowEndDevice(boolean isLowEndDevice);
390 }; 391 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/testing/Internals.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698