| 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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 unsigned workerThreadCount() const; | 211 unsigned workerThreadCount() const; |
| 212 | 212 |
| 213 void setDeviceProximity(Document*, const String& eventType, double value, do
uble min, double max, ExceptionState&); | 213 void setDeviceProximity(Document*, const String& eventType, double value, do
uble min, double max, ExceptionState&); |
| 214 | 214 |
| 215 String layerTreeAsText(Document*, unsigned flags, ExceptionState&) const; | 215 String layerTreeAsText(Document*, unsigned flags, ExceptionState&) const; |
| 216 String layerTreeAsText(Document*, ExceptionState&) const; | 216 String layerTreeAsText(Document*, ExceptionState&) const; |
| 217 String elementLayerTreeAsText(Element*, unsigned flags, ExceptionState&) con
st; | 217 String elementLayerTreeAsText(Element*, unsigned flags, ExceptionState&) con
st; |
| 218 String elementLayerTreeAsText(Element*, ExceptionState&) const; | 218 String elementLayerTreeAsText(Element*, ExceptionState&) const; |
| 219 | 219 |
| 220 bool scrollsWithRespectTo(Element*, Element*, ExceptionState&); | 220 bool scrollsWithRespectTo(Element*, Element*, ExceptionState&); |
| 221 bool isUnclippedDescendant(Element*, ExceptionState&); | |
| 222 | 221 |
| 223 String scrollingStateTreeAsText(Document*) const; | 222 String scrollingStateTreeAsText(Document*) const; |
| 224 String mainThreadScrollingReasons(Document*, ExceptionState&) const; | 223 String mainThreadScrollingReasons(Document*, ExceptionState&) const; |
| 225 PassRefPtrWillBeRawPtr<ClientRectList> nonFastScrollableRects(Document*, Exc
eptionState&) const; | 224 PassRefPtrWillBeRawPtr<ClientRectList> nonFastScrollableRects(Document*, Exc
eptionState&) const; |
| 226 | 225 |
| 227 void garbageCollectDocumentResources(Document*) const; | 226 void garbageCollectDocumentResources(Document*) const; |
| 228 void evictAllResources() const; | 227 void evictAllResources() const; |
| 229 | 228 |
| 230 unsigned numberOfLiveNodes() const; | 229 unsigned numberOfLiveNodes() const; |
| 231 unsigned numberOfLiveDocuments() const; | 230 unsigned numberOfLiveDocuments() const; |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag
gable, ExceptionState&); | 340 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag
gable, ExceptionState&); |
| 342 | 341 |
| 343 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 342 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
| 344 Member<InternalRuntimeFlags> m_runtimeFlags; | 343 Member<InternalRuntimeFlags> m_runtimeFlags; |
| 345 Member<InternalProfilers> m_profilers; | 344 Member<InternalProfilers> m_profilers; |
| 346 }; | 345 }; |
| 347 | 346 |
| 348 } // namespace blink | 347 } // namespace blink |
| 349 | 348 |
| 350 #endif // Internals_h | 349 #endif // Internals_h |
| OLD | NEW |