| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |