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

Unified Diff: third_party/WebKit/Source/core/workers/WorkerInspectorProxy.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/workers/WorkerInspectorProxy.h
diff --git a/third_party/WebKit/Source/core/workers/WorkerInspectorProxy.h b/third_party/WebKit/Source/core/workers/WorkerInspectorProxy.h
index fcbc0fe0eb1239be30357a65e22d3ea89370264c..36e281e41c4f9ddcf50076b77247d6e251440975 100644
--- a/third_party/WebKit/Source/core/workers/WorkerInspectorProxy.h
+++ b/third_party/WebKit/Source/core/workers/WorkerInspectorProxy.h
@@ -19,10 +19,9 @@ class WorkerGlobalScopeProxy;
// A proxy for talking to the worker inspector on the worker thread.
// All of these methods should be called on the main thread.
-class CORE_EXPORT WorkerInspectorProxy final : public NoBaseWillBeGarbageCollectedFinalized<WorkerInspectorProxy> {
- USING_FAST_MALLOC_WILL_BE_REMOVED(WorkerInspectorProxy);
+class CORE_EXPORT WorkerInspectorProxy final : public GarbageCollectedFinalized<WorkerInspectorProxy> {
public:
- static PassOwnPtrWillBeRawPtr<WorkerInspectorProxy> create();
+ static RawPtr<WorkerInspectorProxy> create();
~WorkerInspectorProxy();
DECLARE_TRACE();
@@ -49,14 +48,14 @@ public:
Document* getDocument() { return m_document; }
const String& inspectorId();
- using WorkerInspectorProxySet = WillBePersistentHeapHashSet<RawPtrWillBeWeakMember<WorkerInspectorProxy>>;
+ using WorkerInspectorProxySet = PersistentHeapHashSet<WeakMember<WorkerInspectorProxy>>;
static const WorkerInspectorProxySet& allProxies();
private:
WorkerInspectorProxy();
WorkerThread* m_workerThread;
- RawPtrWillBeMember<Document> m_document;
+ Member<Document> m_document;
PageInspector* m_pageInspector;
String m_url;
String m_inspectorId;

Powered by Google App Engine
This is Rietveld 408576698