| 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 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 389 Node*, | 389 Node*, |
| 390 ExceptionState&); | 390 ExceptionState&); |
| 391 void forceFullRepaint(Document*, ExceptionState&); | 391 void forceFullRepaint(Document*, ExceptionState&); |
| 392 | 392 |
| 393 ClientRectList* draggableRegions(Document*, ExceptionState&); | 393 ClientRectList* draggableRegions(Document*, ExceptionState&); |
| 394 ClientRectList* nonDraggableRegions(Document*, ExceptionState&); | 394 ClientRectList* nonDraggableRegions(Document*, ExceptionState&); |
| 395 | 395 |
| 396 DOMArrayBuffer* serializeObject(PassRefPtr<SerializedScriptValue>) const; | 396 DOMArrayBuffer* serializeObject(PassRefPtr<SerializedScriptValue>) const; |
| 397 PassRefPtr<SerializedScriptValue> deserializeBuffer(DOMArrayBuffer*) const; | 397 PassRefPtr<SerializedScriptValue> deserializeBuffer(DOMArrayBuffer*) const; |
| 398 | 398 |
| 399 DOMArrayBuffer* serializeWithInlineWasm(ScriptValue) const; |
| 400 ScriptValue deserializeBufferContainingWasm(ScriptState*, |
| 401 DOMArrayBuffer*) const; |
| 402 |
| 399 String getCurrentCursorInfo(); | 403 String getCurrentCursorInfo(); |
| 400 | 404 |
| 401 bool cursorUpdatePending() const; | 405 bool cursorUpdatePending() const; |
| 402 | 406 |
| 403 String markerTextForListItem(Element*); | 407 String markerTextForListItem(Element*); |
| 404 | 408 |
| 405 void forceReload(bool bypassCache); | 409 void forceReload(bool bypassCache); |
| 406 | 410 |
| 407 String getImageSourceURL(Element*); | 411 String getImageSourceURL(Element*); |
| 408 | 412 |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 549 const String& markerType, | 553 const String& markerType, |
| 550 unsigned index, | 554 unsigned index, |
| 551 ExceptionState&); | 555 ExceptionState&); |
| 552 Member<InternalRuntimeFlags> m_runtimeFlags; | 556 Member<InternalRuntimeFlags> m_runtimeFlags; |
| 553 Member<Document> m_document; | 557 Member<Document> m_document; |
| 554 }; | 558 }; |
| 555 | 559 |
| 556 } // namespace blink | 560 } // namespace blink |
| 557 | 561 |
| 558 #endif // Internals_h | 562 #endif // Internals_h |
| OLD | NEW |