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

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

Issue 180533008: Fix oilpan build of MediaQuerySetTest. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/MediaQuerySetTest.cpp
diff --git a/Source/core/css/MediaQuerySetTest.cpp b/Source/core/css/MediaQuerySetTest.cpp
index 5b9814f1da78eff71deb7fd1221e93303cc23b10..3cc7bdd296e4c16fbca45c3cbf0b218c16870304 100644
--- a/Source/core/css/MediaQuerySetTest.cpp
+++ b/Source/core/css/MediaQuerySetTest.cpp
@@ -119,7 +119,7 @@ TEST(MediaQueryParserTest, Basic)
};
for (unsigned i = 0; testCases[i].input; ++i) {
- RefPtr<MediaQuerySet> querySet = MediaQuerySet::create(testCases[i].input);
+ RefPtrWillBeRawPtr<MediaQuerySet> querySet = MediaQuerySet::create(testCases[i].input);
StringBuilder output;
char outputCharArray[outputCharArrayLen];
size_t j = 0;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698