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

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

Issue 2587913002: Rename activeDOMObjectsAreSuspended to isContextSuspended (Closed)
Patch Set: temp Created 3 years, 12 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
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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 [RaisesException] DOMPoint touchPositionAdjustedToBestContextMenuNode(long x , long y, long width, long height, Document document); 138 [RaisesException] DOMPoint touchPositionAdjustedToBestContextMenuNode(long x , long y, long width, long height, Document document);
139 [RaisesException] Node touchNodeAdjustedToBestContextMenuNode(long x, long y , long width, long height, Document document); 139 [RaisesException] Node touchNodeAdjustedToBestContextMenuNode(long x, long y , long width, long height, Document document);
140 [RaisesException] ClientRect bestZoomableAreaForTouchPoint(long x, long y, l ong width, long height, Document document); 140 [RaisesException] ClientRect bestZoomableAreaForTouchPoint(long x, long y, l ong width, long height, Document document);
141 141
142 [RaisesException] long lastSpellCheckRequestSequence(Document document); 142 [RaisesException] long lastSpellCheckRequestSequence(Document document);
143 [RaisesException] long lastSpellCheckProcessedSequence(Document document); 143 [RaisesException] long lastSpellCheckProcessedSequence(Document document);
144 144
145 sequence<DOMString> userPreferredLanguages(); 145 sequence<DOMString> userPreferredLanguages();
146 void setUserPreferredLanguages(sequence<DOMString> languages); 146 void setUserPreferredLanguages(sequence<DOMString> languages);
147 147
148 unsigned long activeDOMObjectCount(Document document); 148 unsigned long suspendableObjectCount(Document document);
149 unsigned long wheelEventHandlerCount(Document document); 149 unsigned long wheelEventHandlerCount(Document document);
150 unsigned long scrollEventHandlerCount(Document document); 150 unsigned long scrollEventHandlerCount(Document document);
151 unsigned long touchStartOrMoveEventHandlerCount(Document document); 151 unsigned long touchStartOrMoveEventHandlerCount(Document document);
152 unsigned long touchEndOrCancelEventHandlerCount(Document document); 152 unsigned long touchEndOrCancelEventHandlerCount(Document document);
153 [RaisesException] LayerRectList touchEventTargetLayerRects(Document document ); 153 [RaisesException] LayerRectList touchEventTargetLayerRects(Document document );
154 154
155 [RaisesException] boolean executeCommand(Document document, DOMString name, DOMString value); 155 [RaisesException] boolean executeCommand(Document document, DOMString name, DOMString value);
156 156
157 DOMString htmlNamespace(); 157 DOMString htmlNamespace();
158 sequence<DOMString> htmlTags(); 158 sequence<DOMString> htmlTags();
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
353 DOMString getProgrammaticScrollAnimationState(Node node); 353 DOMString getProgrammaticScrollAnimationState(Node node);
354 354
355 ClientRect visualRect(Node node); 355 ClientRect visualRect(Node node);
356 356
357 OriginTrialsTest originTrialsTest(); 357 OriginTrialsTest originTrialsTest();
358 358
359 void crash(); 359 void crash();
360 360
361 void setIsLowEndDevice(boolean isLowEndDevice); 361 void setIsLowEndDevice(boolean isLowEndDevice);
362 }; 362 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/testing/Internals.cpp ('k') | third_party/WebKit/Source/core/timing/PerformanceObserver.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698