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

Unified Diff: third_party/WebKit/Source/core/inspector/WorkerInspectorController.h

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/core/inspector/WorkerInspectorController.h
diff --git a/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h b/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
index d2f09ce0e8be1fc512c46b26735b42cd4d66a8b8..00a0a14d18ec3088e47de6ba0dcaa5385d9b8716 100644
--- a/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
+++ b/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
@@ -55,11 +55,10 @@ class Frontend;
class FrontendChannel;
}
-class WorkerInspectorController final : public RefCountedWillBeGarbageCollectedFinalized<WorkerInspectorController>, public InspectorRuntimeAgent::Client, public protocol::FrontendChannel {
+class WorkerInspectorController final : public GarbageCollectedFinalized<WorkerInspectorController>, public InspectorRuntimeAgent::Client, public protocol::FrontendChannel {
WTF_MAKE_NONCOPYABLE(WorkerInspectorController);
- USING_FAST_MALLOC_WILL_BE_REMOVED(WorkerInspectorController);
public:
- static PassRefPtrWillBeRawPtr<WorkerInspectorController> create(WorkerGlobalScope*);
+ static RawPtr<WorkerInspectorController> create(WorkerGlobalScope*);
~WorkerInspectorController();
DECLARE_TRACE();
@@ -80,13 +79,13 @@ private:
void sendProtocolNotification(PassOwnPtr<protocol::DictionaryValue> message) override;
void flush() override;
- RawPtrWillBeMember<WorkerGlobalScope> m_workerGlobalScope;
- RefPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents;
+ Member<WorkerGlobalScope> m_workerGlobalScope;
+ Member<InstrumentingAgents> m_instrumentingAgents;
InspectorAgentRegistry m_agents;
OwnPtr<protocol::Frontend> m_frontend;
OwnPtr<protocol::Dispatcher> m_backendDispatcher;
- RawPtrWillBeMember<WorkerDebuggerAgent> m_workerDebuggerAgent;
- RawPtrWillBeMember<WorkerRuntimeAgent> m_workerRuntimeAgent;
+ Member<WorkerDebuggerAgent> m_workerDebuggerAgent;
+ Member<WorkerRuntimeAgent> m_workerRuntimeAgent;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698