| 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 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 bool scrollsWithRespectTo(Element*, Element*, ExceptionState&); | 326 bool scrollsWithRespectTo(Element*, Element*, ExceptionState&); |
| 327 | 327 |
| 328 String scrollingStateTreeAsText(Document*) const; | 328 String scrollingStateTreeAsText(Document*) const; |
| 329 String mainThreadScrollingReasons(Document*, ExceptionState&) const; | 329 String mainThreadScrollingReasons(Document*, ExceptionState&) const; |
| 330 ClientRectList* nonFastScrollableRects(Document*, ExceptionState&) const; | 330 ClientRectList* nonFastScrollableRects(Document*, ExceptionState&) const; |
| 331 | 331 |
| 332 void evictAllResources() const; | 332 void evictAllResources() const; |
| 333 | 333 |
| 334 unsigned numberOfLiveNodes() const; | 334 unsigned numberOfLiveNodes() const; |
| 335 unsigned numberOfLiveDocuments() const; | 335 unsigned numberOfLiveDocuments() const; |
| 336 String dumpRefCountedInstanceCounts() const; | |
| 337 LocalDOMWindow* OpenDummyInspectorFrontend(const String& url); | 336 LocalDOMWindow* OpenDummyInspectorFrontend(const String& url); |
| 338 void CloseDummyInspectorFrontend(); | 337 void CloseDummyInspectorFrontend(); |
| 339 | 338 |
| 340 String counterValue(Element*); | 339 String counterValue(Element*); |
| 341 | 340 |
| 342 int pageNumber(Element*, | 341 int pageNumber(Element*, |
| 343 float page_width, | 342 float page_width, |
| 344 float page_height, | 343 float page_height, |
| 345 ExceptionState&); | 344 ExceptionState&); |
| 346 Vector<String> shortcutIconURLs(Document*) const; | 345 Vector<String> shortcutIconURLs(Document*) const; |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 564 const String& marker_type, | 563 const String& marker_type, |
| 565 unsigned index, | 564 unsigned index, |
| 566 ExceptionState&); | 565 ExceptionState&); |
| 567 Member<InternalRuntimeFlags> runtime_flags_; | 566 Member<InternalRuntimeFlags> runtime_flags_; |
| 568 Member<Document> document_; | 567 Member<Document> document_; |
| 569 }; | 568 }; |
| 570 | 569 |
| 571 } // namespace blink | 570 } // namespace blink |
| 572 | 571 |
| 573 #endif // Internals_h | 572 #endif // Internals_h |
| OLD | NEW |