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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorWorkerAgent.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/InspectorWorkerAgent.h
diff --git a/third_party/WebKit/Source/core/inspector/InspectorWorkerAgent.h b/third_party/WebKit/Source/core/inspector/InspectorWorkerAgent.h
index 0a3f4027c58bad7855f21e9780351178cca555bf..f1d777c9d7a2c4cd7e6d4237cbbcec141ba5d3fc 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorWorkerAgent.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorWorkerAgent.h
@@ -49,7 +49,7 @@ class CORE_EXPORT InspectorWorkerAgent final
, public WorkerInspectorProxy::PageInspector {
WTF_MAKE_NONCOPYABLE(InspectorWorkerAgent);
public:
- static PassOwnPtrWillBeRawPtr<InspectorWorkerAgent> create(InspectedFrames*, PageConsoleAgent*);
+ static RawPtr<InspectorWorkerAgent> create(InspectedFrames*, PageConsoleAgent*);
~InspectorWorkerAgent() override;
DECLARE_VIRTUAL_TRACE();
@@ -79,10 +79,10 @@ private:
void dispatchMessageFromWorker(WorkerInspectorProxy*, const String& message) override;
void workerConsoleAgentEnabled(WorkerInspectorProxy*) override;
- RawPtrWillBeMember<InspectedFrames> m_inspectedFrames;
- WillBeHeapHashMap<String, RawPtrWillBeMember<WorkerInspectorProxy>> m_connectedProxies;
+ Member<InspectedFrames> m_inspectedFrames;
+ HeapHashMap<String, Member<WorkerInspectorProxy>> m_connectedProxies;
String m_tracingSessionId;
- RawPtrWillBeMember<PageConsoleAgent> m_consoleAgent;
+ Member<PageConsoleAgent> m_consoleAgent;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698