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

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, 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/inspector/WorkerInspectorController.h
diff --git a/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h b/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
index af0e8e6449c82653497adcd366faa43a6c5d0c68..ef996512fa9ac328390eb8af95e786c006b0f2a2 100644
--- a/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
+++ b/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
@@ -52,15 +52,14 @@ class WorkerGlobalScope;
class WorkerRuntimeAgent;
class WorkerThreadDebugger;
-class WorkerInspectorController final : public RefCountedWillBeGarbageCollectedFinalized<WorkerInspectorController>, public InspectorRuntimeAgent::Client {
+class WorkerInspectorController final : public GarbageCollectedFinalized<WorkerInspectorController>, public InspectorRuntimeAgent::Client {
WTF_MAKE_NONCOPYABLE(WorkerInspectorController);
- USING_FAST_MALLOC_WILL_BE_REMOVED(WorkerInspectorController);
public:
explicit WorkerInspectorController(WorkerGlobalScope*);
~WorkerInspectorController();
DECLARE_TRACE();
- void registerModuleAgent(PassOwnPtrWillBeRawPtr<InspectorAgent>);
+ void registerModuleAgent(RawPtr<InspectorAgent>);
void connectFrontend();
void disconnectFrontend();
void restoreInspectorStateFromCookie(const String& inspectorCookie);
@@ -83,16 +82,16 @@ private:
InspectorFrontendChannel* frontendChannel() const;
- RawPtrWillBeMember<WorkerGlobalScope> m_workerGlobalScope;
- RefPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents;
+ Member<WorkerGlobalScope> m_workerGlobalScope;
+ Member<InstrumentingAgents> m_instrumentingAgents;
WorkerThreadDebugger* m_workerThreadDebugger;
OwnPtr<InjectedScriptManager> m_injectedScriptManager;
InspectorAgentRegistry m_agents;
- OwnPtrWillBeMember<PageInspectorProxy> m_pageInspectorProxy;
+ Member<PageInspectorProxy> m_pageInspectorProxy;
OwnPtr<InspectorFrontend> m_frontend;
RefPtr<InspectorBackendDispatcher> m_backendDispatcher;
- RawPtrWillBeMember<WorkerDebuggerAgent> m_workerDebuggerAgent;
- RawPtrWillBeMember<WorkerRuntimeAgent> m_workerRuntimeAgent;
+ Member<WorkerDebuggerAgent> m_workerDebuggerAgent;
+ Member<WorkerRuntimeAgent> m_workerRuntimeAgent;
OwnPtr<InspectorTaskRunner> m_inspectorTaskRunner;
OwnPtr<InspectorTaskRunner::IgnoreInterruptsScope> m_beforeInitlizedScope;
bool m_paused;

Powered by Google App Engine
This is Rietveld 408576698