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

Unified Diff: third_party/WebKit/Source/modules/notifications/NotificationDataTest.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/modules/notifications/NotificationDataTest.cpp
diff --git a/third_party/WebKit/Source/modules/notifications/NotificationDataTest.cpp b/third_party/WebKit/Source/modules/notifications/NotificationDataTest.cpp
index afac764cb772ee2bd83d41ef161009a5656fcd0e..63b4a34c6e328b2d7039cece875622bf2ff4ed89 100644
--- a/third_party/WebKit/Source/modules/notifications/NotificationDataTest.cpp
+++ b/third_party/WebKit/Source/modules/notifications/NotificationDataTest.cpp
@@ -44,13 +44,13 @@ class NotificationDataTest : public ::testing::Test {
public:
void SetUp() override
{
- m_executionContext = adoptRefWillBeNoop(new NullExecutionContext());
+ m_executionContext = new NullExecutionContext();
}
ExecutionContext* getExecutionContext() { return m_executionContext.get(); }
private:
- RefPtrWillBePersistent<ExecutionContext> m_executionContext;
+ Persistent<ExecutionContext> m_executionContext;
};
TEST_F(NotificationDataTest, ReflectProperties)

Powered by Google App Engine
This is Rietveld 408576698