|
Change various helper classes to transition types to get CSSValue entirely onto the gc heap.
Specifically MediaQuery, MediaQueryExp, MediaQuerySet, MediaQueryResult, and MediaList. Also added a persistent in CSSStyleSheet and MediaQueryList. Finally changed FontFace to RefCountedGarbageCollected when oilpan is enabled. FontFace require a bit more separate work to move entirely so leaving that for a separate change.
The reason for the test breakage was that I had overlooked a MediaQueryExp that was a part object in MediaQueryResult.
Finally fixed an incorrect persistent found by Ian's oilpan plugin, yay:)
R=ager@chromium.org, erik.corry@gmail.com, haraken@chromium.org, tkent@chromium.org, vegorov@chromium.org, zerny@chromium.org
BUG= 341815
NOTRY=true
Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=167798
Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=168456
Total comments: 16
Total comments: 8
Total comments: 2
Total comments: 4
|
Unified diffs |
Side-by-side diffs |
Delta from patch set |
Stats (+203 lines, -118 lines) |
Patch |
 |
M |
Source/core/css/CSSGrammar.y
|
View
|
1
2
3
4
5
6
|
2 chunks |
+3 lines, -2 lines |
0 comments
|
Download
|
 |
M |
Source/core/css/CSSImportRule.h
|
View
|
1
2
3
4
5
6
7
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
Source/core/css/CSSImportRule.cpp
|
View
|
1
2
3
4
5
6
7
|
2 chunks |
+6 lines, -0 lines |
0 comments
|
Download
|
 |
M |
Source/core/css/CSSMediaRule.h
|
View
|
1
2
3
|
1 chunk |
+2 lines, -2 lines |
0 comments
|
Download
|
 |
M |
Source/core/css/CSSMediaRule.cpp
|
View
|
1
2
3
4
5
|
2 chunks |
+7 lines, -0 lines |
0 comments
|
Download
|
 |
M |
Source/core/css/CSSStyleSheet.h
|
View
|
1
2
3
|
3 chunks |
+3 lines, -3 lines |
0 comments
|
Download
|
 |
M |
Source/core/css/CSSStyleSheet.cpp
|
View
|
1
2
3
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
Source/core/css/FontFace.h
|
View
|
1
2
3
|
3 chunks |
+10 lines, -8 lines |
0 comments
|
Download
|
 |
M |
Source/core/css/FontFace.cpp
|
View
|
1
2
3
|
4 chunks |
+14 lines, -3 lines |
0 comments
|
Download
|
 |
M |
Source/core/css/MediaList.h
|
View
|
1
2
3
|
3 chunks |
+23 lines, -17 lines |
2 comments
|
Download
|
 |
M |
Source/core/css/MediaList.cpp
|
View
|
1
2
3
4
5
6
|
11 chunks |
+27 lines, -13 lines |
0 comments
|
Download
|
 |
M |
Source/core/css/MediaList.idl
|
View
|
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
 |
M |
Source/core/css/MediaQuery.h
|
View
|
1
2
3
4
5
6
|
2 chunks |
+10 lines, -7 lines |
0 comments
|
Download
|
 |
M |
Source/core/css/MediaQuery.cpp
|
View
|
1
2
3
4
5
6
|
3 chunks |
+13 lines, -4 lines |
0 comments
|
Download
|
 |
M |
Source/core/css/MediaQueryEvaluator.h
|
View
|
1
2
3
|
2 chunks |
+2 lines, -1 line |
2 comments
|
Download
|
 |
M |
Source/core/css/MediaQueryEvaluator.cpp
|
View
|
1
2
3
4
5
6
|
2 chunks |
+3 lines, -3 lines |
0 comments
|
Download
|
 |
M |
Source/core/css/MediaQueryExp.h
|
View
|
1
2
|
2 chunks |
+9 lines, -5 lines |
0 comments
|
Download
|
 |
M |
Source/core/css/MediaQueryExp.cpp
|
View
|
1
2
|
2 chunks |
+8 lines, -2 lines |
0 comments
|
Download
|
 |
M |
Source/core/css/MediaQueryList.h
|
View
|
|
3 chunks |
+4 lines, -3 lines |
0 comments
|
Download
|
 |
M |
Source/core/css/MediaQueryList.cpp
|
View
|
|
1 chunk |
+2 lines, -2 lines |
0 comments
|
Download
|
 |
M |
Source/core/css/MediaQueryMatcher.cpp
|
View
|
1
2
3
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
Source/core/css/StyleMedia.cpp
|
View
|
1
2
3
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
Source/core/css/StyleRule.h
|
View
|
1
2
3
|
2 chunks |
+4 lines, -4 lines |
0 comments
|
Download
|
 |
M |
Source/core/css/StyleRule.cpp
|
View
|
1
2
3
|
2 chunks |
+7 lines, -1 line |
0 comments
|
Download
|
 |
M |
Source/core/css/StyleRuleImport.h
|
View
|
1
|
2 chunks |
+3 lines, -3 lines |
0 comments
|
Download
|
 |
M |
Source/core/css/StyleRuleImport.cpp
|
View
|
1
2
3
|
2 chunks |
+3 lines, -2 lines |
0 comments
|
Download
|
 |
M |
Source/core/css/parser/BisonCSSParser.h
|
View
|
1
2
3
4
5
6
7
|
4 chunks |
+12 lines, -12 lines |
0 comments
|
Download
|
 |
M |
Source/core/css/parser/BisonCSSParser-in.cpp
|
View
|
1
2
3
4
5
6
7
|
5 chunks |
+12 lines, -12 lines |
0 comments
|
Download
|
 |
M |
Source/core/css/resolver/MediaQueryResult.h
|
View
|
1
2
3
|
2 chunks |
+4 lines, -2 lines |
0 comments
|
Download
|
 |
M |
Source/core/dom/StyleElement.cpp
|
View
|
1
2
3
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
Source/core/html/HTMLLinkElement.cpp
|
View
|
1
2
3
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
Source/core/html/parser/HTMLResourcePreloader.cpp
|
View
|
1
2
3
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
Source/core/storage/StorageEvent.cpp
|
View
|
1
2
3
4
5
6
7
|
1 chunk |
+4 lines, -0 lines |
0 comments
|
Download
|
Total messages: 28 (0 generated)
|