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

Side by Side Diff: Source/core/dom/shadow/ShadowRoot.h

Issue 277213004: Oilpan: add transition types to shadow DOM supporting objects. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove incorrect FINAL decl Created 6 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) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Neither the name of Google Inc. nor the names of its 10 * * Neither the name of Google Inc. nor the names of its
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 bool containsContentElements() const; 90 bool containsContentElements() const;
91 bool containsInsertionPoints() const { return containsShadowElements() || co ntainsContentElements(); } 91 bool containsInsertionPoints() const { return containsShadowElements() || co ntainsContentElements(); }
92 bool containsShadowRoots() const; 92 bool containsShadowRoots() const;
93 93
94 unsigned descendantShadowElementCount() const; 94 unsigned descendantShadowElementCount() const;
95 95
96 // For Internals, don't use this. 96 // For Internals, don't use this.
97 unsigned childShadowRootCount() const; 97 unsigned childShadowRootCount() const;
98 98
99 HTMLShadowElement* shadowInsertionPointOfYoungerShadowRoot() const; 99 HTMLShadowElement* shadowInsertionPointOfYoungerShadowRoot() const;
100 void setShadowInsertionPointOfYoungerShadowRoot(PassRefPtr<HTMLShadowElement >); 100 void setShadowInsertionPointOfYoungerShadowRoot(PassRefPtrWillBeRawPtr<HTMLS hadowElement>);
101 101
102 void didAddInsertionPoint(InsertionPoint*); 102 void didAddInsertionPoint(InsertionPoint*);
103 void didRemoveInsertionPoint(InsertionPoint*); 103 void didRemoveInsertionPoint(InsertionPoint*);
104 const Vector<RefPtr<InsertionPoint> >& descendantInsertionPoints(); 104 const WillBeHeapVector<RefPtrWillBeMember<InsertionPoint> >& descendantInser tionPoints();
105 105
106 ShadowRootType type() const { return static_cast<ShadowRootType>(m_type); } 106 ShadowRootType type() const { return static_cast<ShadowRootType>(m_type); }
107 107
108 // Make protected methods from base class public here. 108 // Make protected methods from base class public here.
109 using TreeScope::setDocument; 109 using TreeScope::setDocument;
110 using TreeScope::setParentTreeScope; 110 using TreeScope::setParentTreeScope;
111 111
112 public: 112 public:
113 Element* activeElement() const; 113 Element* activeElement() const;
114 114
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 { 159 {
160 return adjustedFocusedElement(); 160 return adjustedFocusedElement();
161 } 161 }
162 162
163 DEFINE_NODE_TYPE_CASTS(ShadowRoot, isShadowRoot()); 163 DEFINE_NODE_TYPE_CASTS(ShadowRoot, isShadowRoot());
164 DEFINE_TYPE_CASTS(ShadowRoot, TreeScope, treeScope, treeScope->rootNode().isShad owRoot(), treeScope.rootNode().isShadowRoot()); 164 DEFINE_TYPE_CASTS(ShadowRoot, TreeScope, treeScope, treeScope->rootNode().isShad owRoot(), treeScope.rootNode().isShadowRoot());
165 165
166 } // namespace 166 } // namespace
167 167
168 #endif 168 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698