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

Unified Diff: third_party/WebKit/Source/core/testing/NullExecutionContext.h

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.h
diff --git a/third_party/WebKit/Source/core/testing/NullExecutionContext.h b/third_party/WebKit/Source/core/testing/NullExecutionContext.h
index 70f72d2993ea0fd4661f7d0d289c6253eba08d04..4c970d87ff2da2ab82cae9389fbac2949831846b 100644
--- a/third_party/WebKit/Source/core/testing/NullExecutionContext.h
+++ b/third_party/WebKit/Source/core/testing/NullExecutionContext.h
@@ -16,8 +16,8 @@
namespace blink {
-class NullExecutionContext final : public RefCountedWillBeGarbageCollectedFinalized<NullExecutionContext>, public SecurityContext, public ExecutionContext {
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(NullExecutionContext);
+class NullExecutionContext final : public GarbageCollectedFinalized<NullExecutionContext>, public SecurityContext, public ExecutionContext {
+ USING_GARBAGE_COLLECTED_MIXIN(NullExecutionContext);
public:
NullExecutionContext();
@@ -37,7 +37,7 @@ public:
SecurityContext& securityContext() override { return *this; }
DOMTimerCoordinator* timers() override { return nullptr; }
- void addConsoleMessage(PassRefPtrWillBeRawPtr<ConsoleMessage>) override { }
+ void addConsoleMessage(RawPtr<ConsoleMessage>) override { }
void logExceptionToConsole(const String& errorMessage, int scriptId, const String& sourceURL, int lineNumber, int columnNumber, PassRefPtr<ScriptCallStack>) override { }
void setIsSecureContext(bool);
@@ -65,7 +65,7 @@ protected:
private:
bool m_tasksNeedSuspension;
bool m_isSecureContext;
- OwnPtrWillBeMember<EventQueue> m_queue;
+ Member<EventQueue> m_queue;
KURL m_dummyURL;
};

Powered by Google App Engine
This is Rietveld 408576698