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

Unified Diff: third_party/WebKit/Source/core/origin_trials/OriginTrialContextTest.cpp

Issue 1853743005: Oilpan: Remove WillBe types (part 13) (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/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 c7ebd46f67b1f7324353791cd53fad67ca3affa6..74acb4326f15a498f3c2a2e8676ebb6c1530087e 100644
--- a/third_party/WebKit/Source/core/origin_trials/OriginTrialContextTest.cpp
+++ b/third_party/WebKit/Source/core/origin_trials/OriginTrialContextTest.cpp
@@ -73,7 +73,7 @@ private:
class TestOriginTrialContext : public OriginTrialContext {
public:
explicit TestOriginTrialContext()
- : m_parent(adoptRefWillBeNoop(new NullExecutionContext()))
+ : m_parent(new NullExecutionContext())
{
}
@@ -110,7 +110,7 @@ public:
}
private:
- RefPtrWillBeMember<NullExecutionContext> m_parent;
+ Member<NullExecutionContext> m_parent;
Vector<String> m_tokens;
};
@@ -148,7 +148,7 @@ protected:
private:
const bool m_frameworkWasEnabled;
OwnPtr<MockTokenValidator> m_tokenValidator;
- OwnPtrWillBePersistent<TestOriginTrialContext> m_originTrialContext;
+ Persistent<TestOriginTrialContext> m_originTrialContext;
};
TEST_F(OriginTrialContextTest, EnabledNonExistingFeature)

Powered by Google App Engine
This is Rietveld 408576698