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

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

Issue 1006723003: Fix template angle bracket syntax in dom (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 9 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
« no previous file with comments | « Source/core/dom/MutationObserverRegistration.cpp ('k') | Source/core/dom/NodeListsNodeData.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 787 matching lines...) Expand 10 before | Expand all | Expand 10 after
798 bool isUserActionElementFocused() const; 798 bool isUserActionElementFocused() const;
799 799
800 void setStyleChange(StyleChangeType); 800 void setStyleChange(StyleChangeType);
801 801
802 virtual LayoutStyle* nonRendererStyle() const { return nullptr; } 802 virtual LayoutStyle* nonRendererStyle() const { return nullptr; }
803 803
804 virtual LayoutStyle* virtualComputedStyle(PseudoId = NOPSEUDO); 804 virtual LayoutStyle* virtualComputedStyle(PseudoId = NOPSEUDO);
805 805
806 void trackForDebugging(); 806 void trackForDebugging();
807 807
808 WillBeHeapVector<OwnPtrWillBeMember<MutationObserverRegistration> >* mutatio nObserverRegistry(); 808 WillBeHeapVector<OwnPtrWillBeMember<MutationObserverRegistration>>* mutation ObserverRegistry();
809 WillBeHeapHashSet<RawPtrWillBeMember<MutationObserverRegistration> >* transi entMutationObserverRegistry(); 809 WillBeHeapHashSet<RawPtrWillBeMember<MutationObserverRegistration>>* transie ntMutationObserverRegistry();
810 810
811 uint32_t m_nodeFlags; 811 uint32_t m_nodeFlags;
812 RawPtrWillBeMember<ContainerNode> m_parentOrShadowHostNode; 812 RawPtrWillBeMember<ContainerNode> m_parentOrShadowHostNode;
813 RawPtrWillBeMember<TreeScope> m_treeScope; 813 RawPtrWillBeMember<TreeScope> m_treeScope;
814 RawPtrWillBeMember<Node> m_previous; 814 RawPtrWillBeMember<Node> m_previous;
815 RawPtrWillBeMember<Node> m_next; 815 RawPtrWillBeMember<Node> m_next;
816 // When a node has rare data we move the renderer into the rare data. 816 // When a node has rare data we move the renderer into the rare data.
817 union DataUnion { 817 union DataUnion {
818 DataUnion() : m_layoutObject(nullptr) { } 818 DataUnion() : m_layoutObject(nullptr) { }
819 LayoutObject* m_layoutObject; 819 LayoutObject* m_layoutObject;
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
898 } // namespace blink 898 } // namespace blink
899 899
900 #ifndef NDEBUG 900 #ifndef NDEBUG
901 // Outside the WebCore namespace for ease of invocation from gdb. 901 // Outside the WebCore namespace for ease of invocation from gdb.
902 void showNode(const blink::Node*); 902 void showNode(const blink::Node*);
903 void showTree(const blink::Node*); 903 void showTree(const blink::Node*);
904 void showNodePath(const blink::Node*); 904 void showNodePath(const blink::Node*);
905 #endif 905 #endif
906 906
907 #endif // Node_h 907 #endif // Node_h
OLDNEW
« no previous file with comments | « Source/core/dom/MutationObserverRegistration.cpp ('k') | Source/core/dom/NodeListsNodeData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698