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

Unified Diff: third_party/WebKit/Source/core/css/MediaQuerySetTest.cpp

Issue 2873433003: Move MediaQuery classes off BlinkGC heap (Closed)
Patch Set: Created 3 years, 7 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: third_party/WebKit/Source/core/css/MediaQuerySetTest.cpp
diff --git a/third_party/WebKit/Source/core/css/MediaQuerySetTest.cpp b/third_party/WebKit/Source/core/css/MediaQuerySetTest.cpp
index 600e20c48f603179b9aaf6957f3a8b9ae4c9fbab..50178ee2b1e790878d54630fa976984e3b6e42dd 100644
--- a/third_party/WebKit/Source/core/css/MediaQuerySetTest.cpp
+++ b/third_party/WebKit/Source/core/css/MediaQuerySetTest.cpp
@@ -182,7 +182,7 @@ TEST(MediaQuerySetTest, Basic) {
};
for (unsigned i = 0; testCases[i].input; ++i) {
- MediaQuerySet* querySet = MediaQuerySet::create(testCases[i].input);
+ RefPtr<MediaQuerySet> querySet = MediaQuerySet::create(testCases[i].input);
testMediaQuery(testCases[i], *querySet);
}
}
« no previous file with comments | « third_party/WebKit/Source/core/css/MediaQueryMatcherTest.cpp ('k') | third_party/WebKit/Source/core/css/RuleFeature.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698