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

Unified Diff: Source/core/dom/shadow/ShadowRoot.h

Issue 235113002: Oilpan: Remove guardRef and guardDeref from TreeScope. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Address comments. Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/dom/TreeScopeAdopter.cpp ('k') | Source/core/dom/shadow/ShadowRoot.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/shadow/ShadowRoot.h
diff --git a/Source/core/dom/shadow/ShadowRoot.h b/Source/core/dom/shadow/ShadowRoot.h
index e7c1b745539ad2833e6742ddf510371b09853132..123cca4260ff8ba87ed068b31a73fd8f22d0993f 100644
--- a/Source/core/dom/shadow/ShadowRoot.h
+++ b/Source/core/dom/shadow/ShadowRoot.h
@@ -121,6 +121,8 @@ public:
StyleSheetList* styleSheets();
+ virtual void trace(Visitor*) OVERRIDE;
+
private:
ShadowRoot(Document&, ShadowRootType);
virtual ~ShadowRoot();
@@ -142,7 +144,7 @@ private:
ShadowRoot* m_prev;
ShadowRoot* m_next;
- OwnPtr<ShadowRootRareData> m_shadowRootRareData;
+ OwnPtrWillBeMember<ShadowRootRareData> m_shadowRootRareData;
unsigned m_numberOfStyles : 27;
unsigned m_type : 1;
unsigned m_registeredWithParentShadowRoot : 1;
« no previous file with comments | « Source/core/dom/TreeScopeAdopter.cpp ('k') | Source/core/dom/shadow/ShadowRoot.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698