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

Unified Diff: sky/engine/core/dom/shadow/ShadowRootRareData.h

Issue 796713002: Turn StyleSharing to 11. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years 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: sky/engine/core/dom/shadow/ShadowRootRareData.h
diff --git a/sky/engine/core/dom/shadow/ShadowRootRareData.h b/sky/engine/core/dom/shadow/ShadowRootRareData.h
index 8063812083a3f1f2dadfc39e3b18f802f567f377..58fae89df35a312fe622c8b90f9caf123517d948 100644
--- a/sky/engine/core/dom/shadow/ShadowRootRareData.h
+++ b/sky/engine/core/dom/shadow/ShadowRootRareData.h
@@ -60,15 +60,10 @@ public:
void setDescendantInsertionPoints(Vector<RefPtr<InsertionPoint> >& list) { m_descendantInsertionPoints.swap(list); }
void clearDescendantInsertionPoints() { m_descendantInsertionPoints.clear(); }
- StyleSheetList* styleSheets() { return m_styleSheetList.get(); }
- void setStyleSheets(PassRefPtr<StyleSheetList> styleSheetList) { m_styleSheetList = styleSheetList; }
-
-
private:
unsigned m_descendantContentElementCount;
unsigned m_childShadowRootCount;
Vector<RefPtr<InsertionPoint> > m_descendantInsertionPoints;
- RefPtr<StyleSheetList> m_styleSheetList;
};
inline void ShadowRootRareData::didAddInsertionPoint(InsertionPoint* point)

Powered by Google App Engine
This is Rietveld 408576698