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

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

Issue 2035653006: [DevTools] Move Console to v8 inspector. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: improved api a bit Created 4 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
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 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 191
192 DOMString scrollingStateTreeAsText(Document document); 192 DOMString scrollingStateTreeAsText(Document document);
193 [RaisesException] DOMString mainThreadScrollingReasons(Document document); 193 [RaisesException] DOMString mainThreadScrollingReasons(Document document);
194 [RaisesException] ClientRectList nonFastScrollableRects(Document document); 194 [RaisesException] ClientRectList nonFastScrollableRects(Document document);
195 195
196 void evictAllResources(); 196 void evictAllResources();
197 197
198 unsigned long numberOfLiveNodes(); 198 unsigned long numberOfLiveNodes();
199 unsigned long numberOfLiveDocuments(); 199 unsigned long numberOfLiveDocuments();
200 DOMString dumpRefCountedInstanceCounts(); 200 DOMString dumpRefCountedInstanceCounts();
201 sequence<DOMString> consoleMessageArgumentCounts(Document document); 201 unsigned long numberOfConsoleMessages(Document document);
202 unsigned long numberOfConsoleMessagesWithArguments(Document document);
202 unsigned long[] setMemoryCacheCapacities(unsigned long minDeadBytes, unsigne d long maxDeadBytes, unsigned long totalBytes); 203 unsigned long[] setMemoryCacheCapacities(unsigned long minDeadBytes, unsigne d long maxDeadBytes, unsigned long totalBytes);
203 204
204 DOMString counterValue(Element element); 205 DOMString counterValue(Element element);
205 [RaisesException] long pageNumber(Element element, optional float pageWidth = 800, optional float pageHeight = 600); 206 [RaisesException] long pageNumber(Element element, optional float pageWidth = 800, optional float pageHeight = 600);
206 DOMString[] shortcutIconURLs(Document document); 207 DOMString[] shortcutIconURLs(Document document);
207 DOMString[] allIconURLs(Document document); 208 DOMString[] allIconURLs(Document document);
208 [RaisesException] long numberOfPages(optional double pageWidthInPixels = 800 , optional double pageHeightInPixels = 600); 209 [RaisesException] long numberOfPages(optional double pageWidthInPixels = 800 , optional double pageHeightInPixels = 600);
209 [RaisesException] DOMString pageProperty(DOMString propertyName, long pageNu mber); 210 [RaisesException] DOMString pageProperty(DOMString propertyName, long pageNu mber);
210 [RaisesException] DOMString pageSizeAndMarginsInPixels(long pageIndex, long width, long height, long marginTop, long marginRight, long marginBottom, long ma rginLeft); 211 [RaisesException] DOMString pageSizeAndMarginsInPixels(long pageIndex, long width, long height, long marginTop, long marginRight, long marginBottom, long ma rginLeft);
211 212
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 346
346 void setMediaElementNetworkState(HTMLMediaElement element, long state); 347 void setMediaElementNetworkState(HTMLMediaElement element, long state);
347 348
348 // TODO(liberato): remove once autoplay gesture override experiment conclude s. 349 // TODO(liberato): remove once autoplay gesture override experiment conclude s.
349 void triggerAutoplayViewportCheck(HTMLMediaElement mediaElement); 350 void triggerAutoplayViewportCheck(HTMLMediaElement mediaElement);
350 351
351 DOMString getScrollAnimationState(Node node); 352 DOMString getScrollAnimationState(Node node);
352 353
353 DOMString getProgrammaticScrollAnimationState(Node node); 354 DOMString getProgrammaticScrollAnimationState(Node node);
354 }; 355 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/testing/Internals.cpp ('k') | third_party/WebKit/Source/core/workers/WorkerGlobalScope.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698