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

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: 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
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..6282672eebe80d12fde8e1dfc16d5291ed3b0959 100644
--- a/Source/core/dom/shadow/ShadowRoot.h
+++ b/Source/core/dom/shadow/ShadowRoot.h
@@ -121,6 +121,12 @@ public:
StyleSheetList* styleSheets();
+ virtual void trace(Visitor* visitor) OVERRIDE
+ {
+ TreeScope::trace(visitor);
+ DocumentFragment::trace(visitor);
+ }
+
private:
ShadowRoot(Document&, ShadowRootType);
virtual ~ShadowRoot();

Powered by Google App Engine
This is Rietveld 408576698