| 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 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 398 Node*, | 398 Node*, |
| 399 ExceptionState&); | 399 ExceptionState&); |
| 400 void forceFullRepaint(Document*, ExceptionState&); | 400 void forceFullRepaint(Document*, ExceptionState&); |
| 401 | 401 |
| 402 ClientRectList* draggableRegions(Document*, ExceptionState&); | 402 ClientRectList* draggableRegions(Document*, ExceptionState&); |
| 403 ClientRectList* nonDraggableRegions(Document*, ExceptionState&); | 403 ClientRectList* nonDraggableRegions(Document*, ExceptionState&); |
| 404 | 404 |
| 405 DOMArrayBuffer* serializeObject(PassRefPtr<SerializedScriptValue>) const; | 405 DOMArrayBuffer* serializeObject(PassRefPtr<SerializedScriptValue>) const; |
| 406 PassRefPtr<SerializedScriptValue> deserializeBuffer(DOMArrayBuffer*) const; | 406 PassRefPtr<SerializedScriptValue> deserializeBuffer(DOMArrayBuffer*) const; |
| 407 | 407 |
| 408 DOMArrayBuffer* serializeWithInlineWasm(ScriptValue) const; |
| 409 ScriptValue deserializeBufferContainingWasm(ScriptState*, |
| 410 DOMArrayBuffer*) const; |
| 411 |
| 408 String getCurrentCursorInfo(); | 412 String getCurrentCursorInfo(); |
| 409 | 413 |
| 410 bool cursorUpdatePending() const; | 414 bool cursorUpdatePending() const; |
| 411 | 415 |
| 412 String markerTextForListItem(Element*); | 416 String markerTextForListItem(Element*); |
| 413 | 417 |
| 414 void forceReload(bool bypassCache); | 418 void forceReload(bool bypassCache); |
| 415 | 419 |
| 416 String getImageSourceURL(Element*); | 420 String getImageSourceURL(Element*); |
| 417 | 421 |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 558 const String& markerType, | 562 const String& markerType, |
| 559 unsigned index, | 563 unsigned index, |
| 560 ExceptionState&); | 564 ExceptionState&); |
| 561 Member<InternalRuntimeFlags> m_runtimeFlags; | 565 Member<InternalRuntimeFlags> m_runtimeFlags; |
| 562 Member<Document> m_document; | 566 Member<Document> m_document; |
| 563 }; | 567 }; |
| 564 | 568 |
| 565 } // namespace blink | 569 } // namespace blink |
| 566 | 570 |
| 567 #endif // Internals_h | 571 #endif // Internals_h |
| OLD | NEW |