| 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;
|
| };
|
|
|