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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorResourceAgent.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/InspectorResourceAgent.h
diff --git a/third_party/WebKit/Source/core/inspector/InspectorResourceAgent.h b/third_party/WebKit/Source/core/inspector/InspectorResourceAgent.h
index 8ab0f89a169c939a8e752d6a7382f3ca60e31af3..9ff86dff2166b59b3c2783a21c289118c83268df 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorResourceAgent.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorResourceAgent.h
@@ -71,9 +71,9 @@ class DictionaryValue;
class CORE_EXPORT InspectorResourceAgent final : public InspectorBaseAgent<InspectorResourceAgent, protocol::Frontend::Network>, public protocol::Backend::Network {
public:
- static PassOwnPtrWillBeRawPtr<InspectorResourceAgent> create(InspectedFrames* inspectedFrames)
+ static RawPtr<InspectorResourceAgent> create(InspectedFrames* inspectedFrames)
{
- return adoptPtrWillBeNoop(new InspectorResourceAgent(inspectedFrames));
+ return new InspectorResourceAgent(inspectedFrames);
}
void restore() override;
@@ -163,10 +163,10 @@ private:
bool canGetResponseBodyBlob(const String& requestId);
void getResponseBodyBlob(const String& requestId, PassOwnPtr<GetResponseBodyCallback>);
- RawPtrWillBeMember<InspectedFrames> m_inspectedFrames;
+ Member<InspectedFrames> m_inspectedFrames;
String m_userAgentOverride;
String m_hostId;
- OwnPtrWillBeMember<NetworkResourcesData> m_resourcesData;
+ Member<NetworkResourcesData> m_resourcesData;
typedef HashMap<ThreadableLoaderClient*, unsigned long> ThreadableLoaderClientRequestIdMap;
@@ -177,7 +177,7 @@ private:
InspectorPageAgent::ResourceType m_pendingRequestType;
ThreadableLoaderClientRequestIdMap m_knownRequestIdMap;
- RefPtrWillBeMember<XHRReplayData> m_pendingXHRReplayData;
+ Member<XHRReplayData> m_pendingXHRReplayData;
typedef HashMap<String, OwnPtr<protocol::Network::Initiator>> FrameNavigationInitiatorMap;
FrameNavigationInitiatorMap m_frameNavigationInitiatorMap;
@@ -186,8 +186,8 @@ private:
OwnPtr<protocol::Network::Initiator> m_styleRecalculationInitiator;
bool m_isRecalculatingStyle;
- PersistentHeapHashSetWillBeHeapHashSet<Member<XMLHttpRequest>> m_replayXHRs;
- PersistentHeapHashSetWillBeHeapHashSet<Member<XMLHttpRequest>> m_replayXHRsToBeDeleted;
+ HeapHashSet<Member<XMLHttpRequest>> m_replayXHRs;
+ HeapHashSet<Member<XMLHttpRequest>> m_replayXHRsToBeDeleted;
Timer<InspectorResourceAgent> m_removeFinishedReplayXHRTimer;
};

Powered by Google App Engine
This is Rietveld 408576698