| 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 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 DictionaryTest* dictionaryTest() const; | 275 DictionaryTest* dictionaryTest() const; |
| 276 UnionTypesTest* unionTypesTest() const; | 276 UnionTypesTest* unionTypesTest() const; |
| 277 | 277 |
| 278 Vector<String> getReferencedFilePaths() const; | 278 Vector<String> getReferencedFilePaths() const; |
| 279 | 279 |
| 280 void startTrackingRepaints(Document*, ExceptionState&); | 280 void startTrackingRepaints(Document*, ExceptionState&); |
| 281 void stopTrackingRepaints(Document*, ExceptionState&); | 281 void stopTrackingRepaints(Document*, ExceptionState&); |
| 282 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(Node*, Except
ionState&); | 282 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(Node*, Except
ionState&); |
| 283 void forceFullRepaint(Document*, ExceptionState&); | 283 void forceFullRepaint(Document*, ExceptionState&); |
| 284 | 284 |
| 285 void startTrackingPaintInvalidationObjects(); |
| 286 void stopTrackingPaintInvalidationObjects(); |
| 287 Vector<String> trackedPaintInvalidationObjects(); |
| 288 |
| 285 ClientRectList* draggableRegions(Document*, ExceptionState&); | 289 ClientRectList* draggableRegions(Document*, ExceptionState&); |
| 286 ClientRectList* nonDraggableRegions(Document*, ExceptionState&); | 290 ClientRectList* nonDraggableRegions(Document*, ExceptionState&); |
| 287 | 291 |
| 288 PassRefPtr<DOMArrayBuffer> serializeObject(PassRefPtr<SerializedScriptValue>
) const; | 292 PassRefPtr<DOMArrayBuffer> serializeObject(PassRefPtr<SerializedScriptValue>
) const; |
| 289 PassRefPtr<SerializedScriptValue> deserializeBuffer(PassRefPtr<DOMArrayBuffe
r>) const; | 293 PassRefPtr<SerializedScriptValue> deserializeBuffer(PassRefPtr<DOMArrayBuffe
r>) const; |
| 290 | 294 |
| 291 String getCurrentCursorInfo(); | 295 String getCurrentCursorInfo(); |
| 292 | 296 |
| 293 bool cursorUpdatePending() const; | 297 bool cursorUpdatePending() const; |
| 294 | 298 |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 | 383 |
| 380 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 384 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
| 381 Member<InternalRuntimeFlags> m_runtimeFlags; | 385 Member<InternalRuntimeFlags> m_runtimeFlags; |
| 382 | 386 |
| 383 IterationSource* startIteration(ScriptState*, ExceptionState&) override; | 387 IterationSource* startIteration(ScriptState*, ExceptionState&) override; |
| 384 }; | 388 }; |
| 385 | 389 |
| 386 } // namespace blink | 390 } // namespace blink |
| 387 | 391 |
| 388 #endif // Internals_h | 392 #endif // Internals_h |
| OLD | NEW |