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

Unified Diff: third_party/WebKit/Source/core/testing/NullExecutionContext.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/testing/NullExecutionContext.cpp
diff --git a/third_party/WebKit/Source/core/testing/NullExecutionContext.cpp b/third_party/WebKit/Source/core/testing/NullExecutionContext.cpp
index a52527e70dfe9053793f5db47da7cbb4dc03871b..4d31ecf5381eb1d992dd511c6db03e55608b8d7a 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 { }
};
@@ -26,7 +26,7 @@ public:
NullExecutionContext::NullExecutionContext()
: m_tasksNeedSuspension(false)
, m_isSecureContext(true)
- , m_queue(adoptPtrWillBeNoop(new NullEventQueue()))
+ , m_queue(new NullEventQueue())
{
}

Powered by Google App Engine
This is Rietveld 408576698