Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(448)

Side by Side Diff: third_party/WebKit/Source/core/dom/Node.h

Issue 1899653002: Support slotchange event (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Bug fix Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/Element.cpp ('k') | third_party/WebKit/Source/core/dom/Node.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698