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

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

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
Index: third_party/WebKit/Source/core/css/MediaQueryMatcherTest.cpp
diff --git a/third_party/WebKit/Source/core/css/MediaQueryMatcherTest.cpp b/third_party/WebKit/Source/core/css/MediaQueryMatcherTest.cpp
index 8d669b6702068916d9ea513835a5c3e4624ad72b..8d8c155e51c66f8d704d0009c4239b9cbe85c930 100644
--- a/third_party/WebKit/Source/core/css/MediaQueryMatcherTest.cpp
+++ b/third_party/WebKit/Source/core/css/MediaQueryMatcherTest.cpp
@@ -14,8 +14,8 @@ namespace blink {
TEST(MediaQueryMatcherTest, LostFrame)
{
OwnPtr<DummyPageHolder> pageHolder = DummyPageHolder::create(IntSize(500, 500));
- RefPtrWillBeRawPtr<MediaQueryMatcher> matcher = MediaQueryMatcher::create(pageHolder->document());
- RefPtrWillBeRawPtr<MediaQuerySet> querySet = MediaQuerySet::create(MediaTypeNames::all);
+ RawPtr<MediaQueryMatcher> matcher = MediaQueryMatcher::create(pageHolder->document());
+ RawPtr<MediaQuerySet> querySet = MediaQuerySet::create(MediaTypeNames::all);
ASSERT_TRUE(matcher->evaluate(querySet.get()));
matcher->documentDetached();
« no previous file with comments | « third_party/WebKit/Source/core/css/MediaQueryMatcher.cpp ('k') | third_party/WebKit/Source/core/css/MediaQuerySetTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698