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

Unified Diff: third_party/WebKit/Source/core/testing/NullExecutionContext.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/testing/NullExecutionContext.cpp
diff --git a/third_party/WebKit/Source/core/testing/NullExecutionContext.cpp b/third_party/WebKit/Source/core/testing/NullExecutionContext.cpp
index f2a649d52e4917673cd519163b4d843e9a4e5eed..c70e8f3a2ceecd4b396902436c0bd106590265ad 100644
--- a/third_party/WebKit/Source/core/testing/NullExecutionContext.cpp
+++ b/third_party/WebKit/Source/core/testing/NullExecutionContext.cpp
@@ -16,7 +16,7 @@ class NullEventQueue final : public EventQueue {
public:
NullEventQueue() { }
~NullEventQueue() override { }
- bool enqueueEvent(PassRefPtrWillBeRawPtr<Event>) override { return true; }
+ bool enqueueEvent(RawPtr<Event>) override { return true; }
bool cancelEvent(Event*) override { return true; }
void close() override { }
};
@@ -25,7 +25,7 @@ public:
NullExecutionContext::NullExecutionContext()
: m_tasksNeedSuspension(false)
- , m_queue(adoptPtrWillBeNoop(new NullEventQueue()))
+ , m_queue((new NullEventQueue()))
{
}

Powered by Google App Engine
This is Rietveld 408576698