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

Unified Diff: third_party/WebKit/Source/core/inspector/WorkerConsoleAgent.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/WorkerConsoleAgent.h
diff --git a/third_party/WebKit/Source/core/inspector/WorkerConsoleAgent.h b/third_party/WebKit/Source/core/inspector/WorkerConsoleAgent.h
index 072d5ae01611a5fdd6923beb595d5446dca13aaf..33e98a69b755b0de3ac7111814965d0924ab7bce 100644
--- a/third_party/WebKit/Source/core/inspector/WorkerConsoleAgent.h
+++ b/third_party/WebKit/Source/core/inspector/WorkerConsoleAgent.h
@@ -41,9 +41,9 @@ class WorkerGlobalScope;
class WorkerConsoleAgent final : public InspectorConsoleAgent {
WTF_MAKE_NONCOPYABLE(WorkerConsoleAgent);
public:
- static PassOwnPtrWillBeRawPtr<WorkerConsoleAgent> create(InjectedScriptManager* injectedScriptManager, WorkerGlobalScope* workerGlobalScope)
+ static RawPtr<WorkerConsoleAgent> create(InjectedScriptManager* injectedScriptManager, WorkerGlobalScope* workerGlobalScope)
{
- return adoptPtrWillBeNoop(new WorkerConsoleAgent(injectedScriptManager, workerGlobalScope));
+ return (new WorkerConsoleAgent(injectedScriptManager, workerGlobalScope));
}
~WorkerConsoleAgent() override;
DECLARE_VIRTUAL_TRACE();
@@ -60,7 +60,7 @@ protected:
private:
WorkerConsoleAgent(InjectedScriptManager*, WorkerGlobalScope*);
- RawPtrWillBeMember<WorkerGlobalScope> m_workerGlobalScope;
+ Member<WorkerGlobalScope> m_workerGlobalScope;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698