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/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, 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/InspectorPageAgent.h
diff --git a/third_party/WebKit/Source/core/inspector/InspectorPageAgent.h b/third_party/WebKit/Source/core/inspector/InspectorPageAgent.h
index 8037d07fd502e6c0e70d6da97ef8f034af17f48b..3782062c94f6fed9487f54169661f84dd085a315 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorPageAgent.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorPageAgent.h
@@ -82,9 +82,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);
@@ -146,8 +146,8 @@ private:
PassRefPtr<TypeBuilder::Page::Frame> buildObjectForFrame(LocalFrame*);
PassRefPtr<TypeBuilder::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;
@@ -155,7 +155,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