| 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 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 | 239 |
| 240 String scrollingStateTreeAsText(Document*) const; | 240 String scrollingStateTreeAsText(Document*) const; |
| 241 String mainThreadScrollingReasons(Document*, ExceptionState&) const; | 241 String mainThreadScrollingReasons(Document*, ExceptionState&) const; |
| 242 ClientRectList* nonFastScrollableRects(Document*, ExceptionState&) const; | 242 ClientRectList* nonFastScrollableRects(Document*, ExceptionState&) const; |
| 243 | 243 |
| 244 void evictAllResources() const; | 244 void evictAllResources() const; |
| 245 | 245 |
| 246 unsigned numberOfLiveNodes() const; | 246 unsigned numberOfLiveNodes() const; |
| 247 unsigned numberOfLiveDocuments() const; | 247 unsigned numberOfLiveDocuments() const; |
| 248 String dumpRefCountedInstanceCounts() const; | 248 String dumpRefCountedInstanceCounts() const; |
| 249 unsigned numberOfConsoleMessages(Document*) const; | |
| 250 unsigned numberOfConsoleMessagesWithArguments(Document*) const; | |
| 251 LocalDOMWindow* openDummyInspectorFrontend(const String& url); | 249 LocalDOMWindow* openDummyInspectorFrontend(const String& url); |
| 252 void closeDummyInspectorFrontend(); | 250 void closeDummyInspectorFrontend(); |
| 253 Vector<unsigned long> setMemoryCacheCapacities(unsigned long minDeadBytes, u
nsigned long maxDeadBytes, unsigned long totalBytes); | 251 Vector<unsigned long> setMemoryCacheCapacities(unsigned long minDeadBytes, u
nsigned long maxDeadBytes, unsigned long totalBytes); |
| 254 | 252 |
| 255 String counterValue(Element*); | 253 String counterValue(Element*); |
| 256 | 254 |
| 257 int pageNumber(Element*, float pageWidth, float pageHeight, ExceptionState&)
; | 255 int pageNumber(Element*, float pageWidth, float pageHeight, ExceptionState&)
; |
| 258 Vector<String> shortcutIconURLs(Document*) const; | 256 Vector<String> shortcutIconURLs(Document*) const; |
| 259 Vector<String> allIconURLs(Document*) const; | 257 Vector<String> allIconURLs(Document*) const; |
| 260 | 258 |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 | 409 |
| 412 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 410 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
| 413 Member<InternalRuntimeFlags> m_runtimeFlags; | 411 Member<InternalRuntimeFlags> m_runtimeFlags; |
| 414 | 412 |
| 415 IterationSource* startIteration(ScriptState*, ExceptionState&) override; | 413 IterationSource* startIteration(ScriptState*, ExceptionState&) override; |
| 416 }; | 414 }; |
| 417 | 415 |
| 418 } // namespace blink | 416 } // namespace blink |
| 419 | 417 |
| 420 #endif // Internals_h | 418 #endif // Internals_h |
| OLD | NEW |