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

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, 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/WorkerDebuggerAgent.h
diff --git a/third_party/WebKit/Source/core/inspector/WorkerDebuggerAgent.h b/third_party/WebKit/Source/core/inspector/WorkerDebuggerAgent.h
index 1376f04fedc5aa1ced5aecb820301beceefff678..47c0a8d74b8323a10fc4c63e0c7de113560a8577 100644
--- a/third_party/WebKit/Source/core/inspector/WorkerDebuggerAgent.h
+++ b/third_party/WebKit/Source/core/inspector/WorkerDebuggerAgent.h
@@ -41,9 +41,8 @@ class WorkerThreadDebugger;
class WorkerDebuggerAgent final : public InspectorDebuggerAgent {
WTF_MAKE_NONCOPYABLE(WorkerDebuggerAgent);
- USING_FAST_MALLOC_WILL_BE_REMOVED(WorkerDebuggerAgent);
public:
- static PassOwnPtrWillBeRawPtr<WorkerDebuggerAgent> create(V8Debugger*, WorkerGlobalScope*, InjectedScriptManager*);
+ static RawPtr<WorkerDebuggerAgent> create(V8Debugger*, WorkerGlobalScope*, InjectedScriptManager*);
~WorkerDebuggerAgent() override;
DECLARE_VIRTUAL_TRACE();
@@ -54,7 +53,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