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

Unified Diff: Source/core/css/parser/SizesAttributeParser.h

Issue 1260403002: Oilpan: Remove raw pointer to LocalFrame from MediaValuesDynamic (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 4 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/MediaValuesDynamic.cpp ('k') | Source/core/css/parser/SizesAttributeParser.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/parser/SizesAttributeParser.h
diff --git a/Source/core/css/parser/SizesAttributeParser.h b/Source/core/css/parser/SizesAttributeParser.h
index ac5ba78d5aac3fefe48e9442e580ae864710628b..e19b47cb5156b3ce6f842f0becf7dae4a599918c 100644
--- a/Source/core/css/parser/SizesAttributeParser.h
+++ b/Source/core/css/parser/SizesAttributeParser.h
@@ -17,7 +17,7 @@ namespace blink {
class CORE_EXPORT SizesAttributeParser {
STACK_ALLOCATED();
public:
- SizesAttributeParser(PassRefPtr<MediaValues>, const String&);
+ SizesAttributeParser(PassRefPtrWillBeRawPtr<MediaValues>, const String&);
float length();
@@ -29,7 +29,7 @@ private:
unsigned effectiveSizeDefaultValue();
RefPtrWillBeMember<MediaQuerySet> m_mediaCondition;
- RefPtr<MediaValues> m_mediaValues;
+ RefPtrWillBeMember<MediaValues> m_mediaValues;
float m_length;
bool m_lengthWasSet;
bool m_isValid;
« no previous file with comments | « Source/core/css/MediaValuesDynamic.cpp ('k') | Source/core/css/parser/SizesAttributeParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698