| 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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 | 227 |
| 228 String scrollingStateTreeAsText(Document*) const; | 228 String scrollingStateTreeAsText(Document*) const; |
| 229 String mainThreadScrollingReasons(Document*, ExceptionState&) const; | 229 String mainThreadScrollingReasons(Document*, ExceptionState&) const; |
| 230 ClientRectList* nonFastScrollableRects(Document*, ExceptionState&) const; | 230 ClientRectList* nonFastScrollableRects(Document*, ExceptionState&) const; |
| 231 | 231 |
| 232 void garbageCollectDocumentResources(Document*) const; | 232 void garbageCollectDocumentResources(Document*) const; |
| 233 void evictAllResources() const; | 233 void evictAllResources() const; |
| 234 | 234 |
| 235 unsigned numberOfLiveNodes() const; | 235 unsigned numberOfLiveNodes() const; |
| 236 unsigned numberOfLiveDocuments() const; | 236 unsigned numberOfLiveDocuments() const; |
| 237 unsigned numberOfLiveAXObjects() const; |
| 237 String dumpRefCountedInstanceCounts() const; | 238 String dumpRefCountedInstanceCounts() const; |
| 238 Vector<String> consoleMessageArgumentCounts(Document*) const; | 239 Vector<String> consoleMessageArgumentCounts(Document*) const; |
| 239 PassRefPtrWillBeRawPtr<LocalDOMWindow> openDummyInspectorFrontend(const Stri
ng& url); | 240 PassRefPtrWillBeRawPtr<LocalDOMWindow> openDummyInspectorFrontend(const Stri
ng& url); |
| 240 void closeDummyInspectorFrontend(); | 241 void closeDummyInspectorFrontend(); |
| 241 Vector<unsigned long> setMemoryCacheCapacities(unsigned long minDeadBytes, u
nsigned long maxDeadBytes, unsigned long totalBytes); | 242 Vector<unsigned long> setMemoryCacheCapacities(unsigned long minDeadBytes, u
nsigned long maxDeadBytes, unsigned long totalBytes); |
| 242 | 243 |
| 243 String counterValue(Element*); | 244 String counterValue(Element*); |
| 244 | 245 |
| 245 int pageNumber(Element*, float pageWidth = 800, float pageHeight = 600); | 246 int pageNumber(Element*, float pageWidth = 800, float pageHeight = 600); |
| 246 Vector<String> shortcutIconURLs(Document*) const; | 247 Vector<String> shortcutIconURLs(Document*) const; |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 369 | 370 |
| 370 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 371 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
| 371 Member<InternalRuntimeFlags> m_runtimeFlags; | 372 Member<InternalRuntimeFlags> m_runtimeFlags; |
| 372 | 373 |
| 373 IterationSource* startIteration(ScriptState*, ExceptionState&) override; | 374 IterationSource* startIteration(ScriptState*, ExceptionState&) override; |
| 374 }; | 375 }; |
| 375 | 376 |
| 376 } // namespace blink | 377 } // namespace blink |
| 377 | 378 |
| 378 #endif // Internals_h | 379 #endif // Internals_h |
| OLD | NEW |