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

Unified Diff: third_party/WebKit/Source/core/workers/WorkerInspectorProxy.cpp

Issue 1852663002: Oilpan: Remove WillBe types (part 9) (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.cpp
diff --git a/third_party/WebKit/Source/core/workers/WorkerInspectorProxy.cpp b/third_party/WebKit/Source/core/workers/WorkerInspectorProxy.cpp
index 97bbd41c850998fc3552cecbafb4f5ee79f8506a..db48fbcfbea713b14c98c561b928a1644b35663f 100644
--- a/third_party/WebKit/Source/core/workers/WorkerInspectorProxy.cpp
+++ b/third_party/WebKit/Source/core/workers/WorkerInspectorProxy.cpp
@@ -39,9 +39,9 @@ WorkerInspectorProxy::WorkerInspectorProxy()
{
}
-PassOwnPtrWillBeRawPtr<WorkerInspectorProxy> WorkerInspectorProxy::create()
+RawPtr<WorkerInspectorProxy> WorkerInspectorProxy::create()
{
- return adoptPtrWillBeNoop(new WorkerInspectorProxy());
+ return new WorkerInspectorProxy();
}
WorkerInspectorProxy::~WorkerInspectorProxy()

Powered by Google App Engine
This is Rietveld 408576698