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

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, 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/workers/WorkerInspectorProxy.h
diff --git a/third_party/WebKit/Source/core/workers/WorkerInspectorProxy.h b/third_party/WebKit/Source/core/workers/WorkerInspectorProxy.h
index a86a431b11feade1820efad9a32d926d41759808..c1a45ac3e09d34ec9a26f4d65dc65ec03e5f879f 100644
--- a/third_party/WebKit/Source/core/workers/WorkerInspectorProxy.h
+++ b/third_party/WebKit/Source/core/workers/WorkerInspectorProxy.h
@@ -20,15 +20,14 @@ class WorkerThread;
// 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();
- class PageInspector : public NoBaseWillBeGarbageCollectedFinalized<PageInspector> {
+ class PageInspector : public GarbageCollectedFinalized<PageInspector> {
public:
virtual ~PageInspector() { }
virtual void dispatchMessageFromWorker(const String&) = 0;
@@ -55,8 +54,8 @@ private:
void addDebuggerTaskForWorker(const WebTraceLocation&, PassOwnPtr<WebTaskRunner::Task>);
WorkerThread* m_workerThread;
- RawPtrWillBeMember<ExecutionContext> m_executionContext;
- RawPtrWillBeMember<WorkerInspectorProxy::PageInspector> m_pageInspector;
+ Member<ExecutionContext> m_executionContext;
+ Member<WorkerInspectorProxy::PageInspector> m_pageInspector;
WorkerGlobalScopeProxy* m_workerGlobalScopeProxy;
};

Powered by Google App Engine
This is Rietveld 408576698