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

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

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 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 238
239 String scrollingStateTreeAsText(Document*) const; 239 String scrollingStateTreeAsText(Document*) const;
240 String mainThreadScrollingReasons(Document*, ExceptionState&) const; 240 String mainThreadScrollingReasons(Document*, ExceptionState&) const;
241 ClientRectList* nonFastScrollableRects(Document*, ExceptionState&) const; 241 ClientRectList* nonFastScrollableRects(Document*, ExceptionState&) const;
242 242
243 void evictAllResources() const; 243 void evictAllResources() const;
244 244
245 unsigned numberOfLiveNodes() const; 245 unsigned numberOfLiveNodes() const;
246 unsigned numberOfLiveDocuments() const; 246 unsigned numberOfLiveDocuments() const;
247 String dumpRefCountedInstanceCounts() const; 247 String dumpRefCountedInstanceCounts() const;
248 Vector<String> consoleMessageArgumentCounts(Document*) const; 248 unsigned numberOfConsoleMessages(Document*) const;
249 unsigned numberOfConsoleMessagesWithArguments(Document*) const;
249 LocalDOMWindow* openDummyInspectorFrontend(const String& url); 250 LocalDOMWindow* openDummyInspectorFrontend(const String& url);
250 void closeDummyInspectorFrontend(); 251 void closeDummyInspectorFrontend();
251 Vector<unsigned long> setMemoryCacheCapacities(unsigned long minDeadBytes, u nsigned long maxDeadBytes, unsigned long totalBytes); 252 Vector<unsigned long> setMemoryCacheCapacities(unsigned long minDeadBytes, u nsigned long maxDeadBytes, unsigned long totalBytes);
252 253
253 String counterValue(Element*); 254 String counterValue(Element*);
254 255
255 int pageNumber(Element*, float pageWidth, float pageHeight, ExceptionState&) ; 256 int pageNumber(Element*, float pageWidth, float pageHeight, ExceptionState&) ;
256 Vector<String> shortcutIconURLs(Document*) const; 257 Vector<String> shortcutIconURLs(Document*) const;
257 Vector<String> allIconURLs(Document*) const; 258 Vector<String> allIconURLs(Document*) const;
258 259
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
411 412
412 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionState&); 413 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionState&);
413 Member<InternalRuntimeFlags> m_runtimeFlags; 414 Member<InternalRuntimeFlags> m_runtimeFlags;
414 415
415 IterationSource* startIteration(ScriptState*, ExceptionState&) override; 416 IterationSource* startIteration(ScriptState*, ExceptionState&) override;
416 }; 417 };
417 418
418 } // namespace blink 419 } // namespace blink
419 420
420 #endif // Internals_h 421 #endif // Internals_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/page/Page.cpp ('k') | third_party/WebKit/Source/core/testing/Internals.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698