| 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 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 416 PassRefPtr<SerializedScriptValue> deserializeBuffer(DOMArrayBuffer*) const; | 416 PassRefPtr<SerializedScriptValue> deserializeBuffer(DOMArrayBuffer*) const; |
| 417 | 417 |
| 418 DOMArrayBuffer* serializeWithInlineWasm(ScriptValue) const; | 418 DOMArrayBuffer* serializeWithInlineWasm(ScriptValue) const; |
| 419 ScriptValue deserializeBufferContainingWasm(ScriptState*, | 419 ScriptValue deserializeBufferContainingWasm(ScriptState*, |
| 420 DOMArrayBuffer*) const; | 420 DOMArrayBuffer*) const; |
| 421 | 421 |
| 422 String getCurrentCursorInfo(); | 422 String getCurrentCursorInfo(); |
| 423 | 423 |
| 424 bool cursorUpdatePending() const; | 424 bool cursorUpdatePending() const; |
| 425 | 425 |
| 426 bool fakeMouseMovePending() const; |
| 427 |
| 426 String markerTextForListItem(Element*); | 428 String markerTextForListItem(Element*); |
| 427 | 429 |
| 428 void forceReload(bool bypass_cache); | 430 void forceReload(bool bypass_cache); |
| 429 | 431 |
| 430 String getImageSourceURL(Element*); | 432 String getImageSourceURL(Element*); |
| 431 void forceImageReload(Element*, ExceptionState&); | 433 void forceImageReload(Element*, ExceptionState&); |
| 432 | 434 |
| 433 String selectMenuListText(HTMLSelectElement*); | 435 String selectMenuListText(HTMLSelectElement*); |
| 434 bool isSelectPopupVisible(Node*); | 436 bool isSelectPopupVisible(Node*); |
| 435 bool selectPopupItemStyleIsRtl(Node*, int); | 437 bool selectPopupItemStyleIsRtl(Node*, int); |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 575 const String& marker_type, | 577 const String& marker_type, |
| 576 unsigned index, | 578 unsigned index, |
| 577 ExceptionState&); | 579 ExceptionState&); |
| 578 Member<InternalRuntimeFlags> runtime_flags_; | 580 Member<InternalRuntimeFlags> runtime_flags_; |
| 579 Member<Document> document_; | 581 Member<Document> document_; |
| 580 }; | 582 }; |
| 581 | 583 |
| 582 } // namespace blink | 584 } // namespace blink |
| 583 | 585 |
| 584 #endif // Internals_h | 586 #endif // Internals_h |
| OLD | NEW |