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

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

Issue 1917883002: Remove TraceWrappers idl attribute (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove incomplete traceWrappers method on dom/Node Created 4 years, 7 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 643 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 DECLARE_VIRTUAL_TRACE(); 662 DECLARE_VIRTUAL_TRACE();
663 663
664 DECLARE_VIRTUAL_TRACE_WRAPPERS();
665
666 unsigned lengthOfContents() const; 664 unsigned lengthOfContents() const;
667 665
668 v8::Local<v8::Object> wrap(v8::Isolate*, v8::Local<v8::Object> creationConte xt) override; 666 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; 667 v8::Local<v8::Object> associateWithWrapper(v8::Isolate*, const WrapperTypeIn fo*, v8::Local<v8::Object> wrapper) override WARN_UNUSED_RETURN;
670 668
671 private: 669 private:
672 enum NodeFlags { 670 enum NodeFlags {
673 HasRareDataFlag = 1, 671 HasRareDataFlag = 1,
674 672
675 // Node type flags. These never change once created. 673 // Node type flags. These never change once created.
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
892 } // namespace blink 890 } // namespace blink
893 891
894 #ifndef NDEBUG 892 #ifndef NDEBUG
895 // Outside the WebCore namespace for ease of invocation from gdb. 893 // Outside the WebCore namespace for ease of invocation from gdb.
896 void showNode(const blink::Node*); 894 void showNode(const blink::Node*);
897 void showTree(const blink::Node*); 895 void showTree(const blink::Node*);
898 void showNodePath(const blink::Node*); 896 void showNodePath(const blink::Node*);
899 #endif 897 #endif
900 898
901 #endif // Node_h 899 #endif // Node_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698