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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorTracingAgent.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/InspectorTracingAgent.h
diff --git a/third_party/WebKit/Source/core/inspector/InspectorTracingAgent.h b/third_party/WebKit/Source/core/inspector/InspectorTracingAgent.h
index 3f647e3db44f2d78be245a60fa0176b027671a08..f2e8fa794dc94651597bd6e272d132fd29953c4e 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorTracingAgent.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorTracingAgent.h
@@ -30,9 +30,9 @@ public:
virtual void disableTracing() { }
};
- static PassOwnPtrWillBeRawPtr<InspectorTracingAgent> create(Client* client, InspectorWorkerAgent* workerAgent, InspectedFrames* inspectedFrames)
+ static RawPtr<InspectorTracingAgent> create(Client* client, InspectorWorkerAgent* workerAgent, InspectedFrames* inspectedFrames)
{
- return adoptPtrWillBeNoop(new InspectorTracingAgent(client, workerAgent, inspectedFrames));
+ return new InspectorTracingAgent(client, workerAgent, inspectedFrames);
}
DECLARE_VIRTUAL_TRACE();
@@ -57,8 +57,8 @@ private:
int m_layerTreeId;
Client* m_client;
- RawPtrWillBeMember<InspectorWorkerAgent> m_workerAgent;
- RawPtrWillBeMember<InspectedFrames> m_inspectedFrames;
+ Member<InspectorWorkerAgent> m_workerAgent;
+ Member<InspectedFrames> m_inspectedFrames;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698