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

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, 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/InspectorTracingAgent.h
diff --git a/third_party/WebKit/Source/core/inspector/InspectorTracingAgent.h b/third_party/WebKit/Source/core/inspector/InspectorTracingAgent.h
index 1537231d6a82d9b0ad8dd44e8ec687795610e0ba..c10a85bb3cde969d2eb9cb9eb5c5ce65f11d969f 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorTracingAgent.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorTracingAgent.h
@@ -31,9 +31,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();
@@ -58,8 +58,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