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

Unified Diff: third_party/WebKit/Source/core/origin_trials/OriginTrialContextTest.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, 10 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/origin_trials/OriginTrialContextTest.cpp
diff --git a/third_party/WebKit/Source/core/origin_trials/OriginTrialContextTest.cpp b/third_party/WebKit/Source/core/origin_trials/OriginTrialContextTest.cpp
index ef186159bdd18b9b5776b85881a028b27d88ed36..cc5fa40e396fd570ecb4a6c90c52e0519c992d2d 100644
--- a/third_party/WebKit/Source/core/origin_trials/OriginTrialContextTest.cpp
+++ b/third_party/WebKit/Source/core/origin_trials/OriginTrialContextTest.cpp
@@ -123,7 +123,7 @@ protected:
HTMLElement* head = document().head();
ASSERT_TRUE(head);
- RefPtrWillBeRawPtr<HTMLMetaElement> meta = HTMLMetaElement::create(document());
+ RawPtr<HTMLMetaElement> meta = HTMLMetaElement::create(document());
meta->setAttribute(HTMLNames::nameAttr, "api-experiments");
AtomicString value(token);
meta->setAttribute(HTMLNames::contentAttr, value);
@@ -144,7 +144,7 @@ protected:
private:
OwnPtr<DummyPageHolder> m_page;
- RefPtrWillBePersistent<HTMLDocument> m_document;
+ Persistent<HTMLDocument> m_document;
const bool m_frameworkWasEnabled;
OwnPtr<MockTokenValidator> m_tokenValidator;
};

Powered by Google App Engine
This is Rietveld 408576698