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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorInspectorAgent.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/InspectorInspectorAgent.h
diff --git a/third_party/WebKit/Source/core/inspector/InspectorInspectorAgent.h b/third_party/WebKit/Source/core/inspector/InspectorInspectorAgent.h
index ba8fc6971432041880f30ec9a13a9e8c8e8afb25..3c57da309df6d6a727e4920f5cecf69bb13f4167 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorInspectorAgent.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorInspectorAgent.h
@@ -44,9 +44,9 @@ class DictionaryValue;
class CORE_EXPORT InspectorInspectorAgent final : public InspectorBaseAgent<InspectorInspectorAgent, protocol::Frontend::Inspector>, public protocol::Backend::Inspector {
WTF_MAKE_NONCOPYABLE(InspectorInspectorAgent);
public:
- static PassOwnPtrWillBeRawPtr<InspectorInspectorAgent> create()
+ static RawPtr<InspectorInspectorAgent> create()
{
- return adoptPtrWillBeNoop(new InspectorInspectorAgent());
+ return new InspectorInspectorAgent();
}
~InspectorInspectorAgent() override;

Powered by Google App Engine
This is Rietveld 408576698