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

Unified Diff: Source/core/css/CSSRule.h

Issue 187313005: Move StyleSheet to the oilpan heap using transition types. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove clearParentXYZ methods when compiling with oilpan Created 6 years, 10 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/css/CSSFilterRule.cpp ('k') | Source/core/css/CSSRule.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSRule.h
diff --git a/Source/core/css/CSSRule.h b/Source/core/css/CSSRule.h
index fb5f69242c3dcd012046385b05d0d19cc8d2104f..519ed90a86cf8a39fd58a026e6fed88daf164be2 100644
--- a/Source/core/css/CSSRule.h
+++ b/Source/core/css/CSSRule.h
@@ -108,8 +108,9 @@ private:
mutable unsigned char m_hasCachedSelectorText : 1;
unsigned char m_parentIsRule : 1;
+ // These should be Members, but no Members in unions.
union {
- CSSRule* m_parentRule; // Should be Member, but no Members in unions.
+ CSSRule* m_parentRule;
CSSStyleSheet* m_parentStyleSheet;
};
};
« no previous file with comments | « Source/core/css/CSSFilterRule.cpp ('k') | Source/core/css/CSSRule.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698