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

Unified Diff: third_party/WebKit/Source/core/inspector/WorkerDebuggerAgent.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/WorkerDebuggerAgent.h
diff --git a/third_party/WebKit/Source/core/inspector/WorkerDebuggerAgent.h b/third_party/WebKit/Source/core/inspector/WorkerDebuggerAgent.h
index 4bc9a5494afd377a1b6df105472116ea91909340..1e111bdf9b18f08e71c57294f5878e93cee2dffc 100644
--- a/third_party/WebKit/Source/core/inspector/WorkerDebuggerAgent.h
+++ b/third_party/WebKit/Source/core/inspector/WorkerDebuggerAgent.h
@@ -39,9 +39,8 @@ class WorkerGlobalScope;
class WorkerDebuggerAgent final : public InspectorDebuggerAgent {
WTF_MAKE_NONCOPYABLE(WorkerDebuggerAgent);
- USING_FAST_MALLOC_WILL_BE_REMOVED(WorkerDebuggerAgent);
public:
- static PassOwnPtrWillBeRawPtr<WorkerDebuggerAgent> create(WorkerGlobalScope*, V8RuntimeAgent*);
+ static RawPtr<WorkerDebuggerAgent> create(WorkerGlobalScope*, V8RuntimeAgent*);
~WorkerDebuggerAgent() override;
DECLARE_VIRTUAL_TRACE();
@@ -52,7 +51,7 @@ private:
void muteConsole() override;
void unmuteConsole() override;
- RawPtrWillBeMember<WorkerGlobalScope> m_inspectedWorkerGlobalScope;
+ Member<WorkerGlobalScope> m_inspectedWorkerGlobalScope;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698