| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2004-2011, 2014 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004-2011, 2014 Apple Inc. All rights reserved. |
| 6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 641 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 652 | 652 |
| 653 StaticNodeList* getDestinationInsertionPoints(); | 653 StaticNodeList* getDestinationInsertionPoints(); |
| 654 HTMLSlotElement* assignedSlot() const; | 654 HTMLSlotElement* assignedSlot() const; |
| 655 HTMLSlotElement* assignedSlotForBinding(); | 655 HTMLSlotElement* assignedSlotForBinding(); |
| 656 | 656 |
| 657 void setAlreadySpellChecked(bool flag) { setFlag(flag, AlreadySpellCheckedFl
ag); } | 657 void setAlreadySpellChecked(bool flag) { setFlag(flag, AlreadySpellCheckedFl
ag); } |
| 658 bool isAlreadySpellChecked() { return getFlag(AlreadySpellCheckedFlag); } | 658 bool isAlreadySpellChecked() { return getFlag(AlreadySpellCheckedFlag); } |
| 659 | 659 |
| 660 bool isFinishedParsingChildren() const { return getFlag(IsFinishedParsingChi
ldrenFlag); } | 660 bool isFinishedParsingChildren() const { return getFlag(IsFinishedParsingChi
ldrenFlag); } |
| 661 | 661 |
| 662 void updateAssignmentForInsertedInto(ContainerNode*); |
| 663 |
| 662 DECLARE_VIRTUAL_TRACE(); | 664 DECLARE_VIRTUAL_TRACE(); |
| 663 | 665 |
| 664 DECLARE_VIRTUAL_TRACE_WRAPPERS(); | 666 DECLARE_VIRTUAL_TRACE_WRAPPERS(); |
| 665 | 667 |
| 666 unsigned lengthOfContents() const; | 668 unsigned lengthOfContents() const; |
| 667 | 669 |
| 668 v8::Local<v8::Object> wrap(v8::Isolate*, v8::Local<v8::Object> creationConte
xt) override; | 670 v8::Local<v8::Object> wrap(v8::Isolate*, v8::Local<v8::Object> creationConte
xt) override; |
| 669 v8::Local<v8::Object> associateWithWrapper(v8::Isolate*, const WrapperTypeIn
fo*, v8::Local<v8::Object> wrapper) override WARN_UNUSED_RETURN; | 671 v8::Local<v8::Object> associateWithWrapper(v8::Isolate*, const WrapperTypeIn
fo*, v8::Local<v8::Object> wrapper) override WARN_UNUSED_RETURN; |
| 670 | 672 |
| 671 private: | 673 private: |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 892 } // namespace blink | 894 } // namespace blink |
| 893 | 895 |
| 894 #ifndef NDEBUG | 896 #ifndef NDEBUG |
| 895 // Outside the WebCore namespace for ease of invocation from gdb. | 897 // Outside the WebCore namespace for ease of invocation from gdb. |
| 896 void showNode(const blink::Node*); | 898 void showNode(const blink::Node*); |
| 897 void showTree(const blink::Node*); | 899 void showTree(const blink::Node*); |
| 898 void showNodePath(const blink::Node*); | 900 void showNodePath(const blink::Node*); |
| 899 #endif | 901 #endif |
| 900 | 902 |
| 901 #endif // Node_h | 903 #endif // Node_h |
| OLD | NEW |