| 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 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(Node*, Except
ionState&); | 288 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(Node*, Except
ionState&); |
| 289 void forceFullRepaint(Document*, ExceptionState&); | 289 void forceFullRepaint(Document*, ExceptionState&); |
| 290 | 290 |
| 291 void startTrackingPaintInvalidationObjects(); | 291 void startTrackingPaintInvalidationObjects(); |
| 292 void stopTrackingPaintInvalidationObjects(); | 292 void stopTrackingPaintInvalidationObjects(); |
| 293 Vector<String> trackedPaintInvalidationObjects(); | 293 Vector<String> trackedPaintInvalidationObjects(); |
| 294 | 294 |
| 295 ClientRectList* draggableRegions(Document*, ExceptionState&); | 295 ClientRectList* draggableRegions(Document*, ExceptionState&); |
| 296 ClientRectList* nonDraggableRegions(Document*, ExceptionState&); | 296 ClientRectList* nonDraggableRegions(Document*, ExceptionState&); |
| 297 | 297 |
| 298 DOMArrayBuffer* serializeObject(PassRefPtr<SerializedScriptValue>) const; | 298 PassRefPtr<DOMArrayBuffer> serializeObject(PassRefPtr<SerializedScriptValue>
) const; |
| 299 PassRefPtr<SerializedScriptValue> deserializeBuffer(DOMArrayBuffer*) const; | 299 PassRefPtr<SerializedScriptValue> deserializeBuffer(PassRefPtr<DOMArrayBuffe
r>) const; |
| 300 | 300 |
| 301 String getCurrentCursorInfo(); | 301 String getCurrentCursorInfo(); |
| 302 | 302 |
| 303 bool cursorUpdatePending() const; | 303 bool cursorUpdatePending() const; |
| 304 | 304 |
| 305 String markerTextForListItem(Element*); | 305 String markerTextForListItem(Element*); |
| 306 | 306 |
| 307 void forceReload(bool bypassCache); | 307 void forceReload(bool bypassCache); |
| 308 | 308 |
| 309 String getImageSourceURL(Element*); | 309 String getImageSourceURL(Element*); |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 415 | 415 |
| 416 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 416 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
| 417 Member<InternalRuntimeFlags> m_runtimeFlags; | 417 Member<InternalRuntimeFlags> m_runtimeFlags; |
| 418 | 418 |
| 419 IterationSource* startIteration(ScriptState*, ExceptionState&) override; | 419 IterationSource* startIteration(ScriptState*, ExceptionState&) override; |
| 420 }; | 420 }; |
| 421 | 421 |
| 422 } // namespace blink | 422 } // namespace blink |
| 423 | 423 |
| 424 #endif // Internals_h | 424 #endif // Internals_h |
| OLD | NEW |