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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorPageAgent.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/InspectorPageAgent.h
diff --git a/third_party/WebKit/Source/core/inspector/InspectorPageAgent.h b/third_party/WebKit/Source/core/inspector/InspectorPageAgent.h
index 7f347fb4bb184a85474b30e511cebabe72c06c14..482afac62a98703d59bc5f2f3c0252eb22d49880 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorPageAgent.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorPageAgent.h
@@ -81,9 +81,9 @@ public:
OtherResource
};
- static PassOwnPtrWillBeRawPtr<InspectorPageAgent> create(InspectedFrames*, Client*, InspectorResourceContentLoader*, InspectorDebuggerAgent*);
+ static RawPtr<InspectorPageAgent> create(InspectedFrames*, Client*, InspectorResourceContentLoader*, InspectorDebuggerAgent*);
- static WillBeHeapVector<RawPtrWillBeMember<Document>> importsForFrame(LocalFrame*);
+ static HeapVector<Member<Document>> importsForFrame(LocalFrame*);
static bool cachedResourceContent(Resource*, String* result, bool* base64Encoded);
static bool sharedBufferContent(PassRefPtr<SharedBuffer>, const String& textEncodingName, bool withBase64Encode, String* result);
@@ -145,8 +145,8 @@ private:
PassOwnPtr<protocol::Page::Frame> buildObjectForFrame(LocalFrame*);
PassOwnPtr<protocol::Page::FrameResourceTree> buildObjectForFrameTree(LocalFrame*);
- RawPtrWillBeMember<InspectedFrames> m_inspectedFrames;
- RawPtrWillBeMember<InspectorDebuggerAgent> m_debuggerAgent;
+ Member<InspectedFrames> m_inspectedFrames;
+ Member<InspectorDebuggerAgent> m_debuggerAgent;
Client* m_client;
long m_lastScriptIdentifier;
String m_pendingScriptToEvaluateOnLoadOnce;
@@ -154,7 +154,7 @@ private:
bool m_enabled;
bool m_reloading;
- RawPtrWillBeMember<InspectorResourceContentLoader> m_inspectorResourceContentLoader;
+ Member<InspectorResourceContentLoader> m_inspectorResourceContentLoader;
};

Powered by Google App Engine
This is Rietveld 408576698