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

Unified Diff: third_party/WebKit/Source/core/inspector/PageDebuggerAgent.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/PageDebuggerAgent.h
diff --git a/third_party/WebKit/Source/core/inspector/PageDebuggerAgent.h b/third_party/WebKit/Source/core/inspector/PageDebuggerAgent.h
index ec6c98c9ade90cab73ec3bb939321eed3bb8e968..98b1071b2f4c06ab211bb4a2070fdb807b902d17 100644
--- a/third_party/WebKit/Source/core/inspector/PageDebuggerAgent.h
+++ b/third_party/WebKit/Source/core/inspector/PageDebuggerAgent.h
@@ -46,9 +46,8 @@ class InspectedFrames;
class CORE_EXPORT PageDebuggerAgent final
: public InspectorDebuggerAgent {
WTF_MAKE_NONCOPYABLE(PageDebuggerAgent);
- USING_FAST_MALLOC_WILL_BE_REMOVED(PageDebuggerAgent);
public:
- static PassOwnPtrWillBeRawPtr<PageDebuggerAgent> create(InspectedFrames*, V8RuntimeAgent*);
+ static RawPtr<PageDebuggerAgent> create(InspectedFrames*, V8RuntimeAgent*);
~PageDebuggerAgent() override;
DECLARE_VIRTUAL_TRACE();
@@ -67,7 +66,7 @@ private:
// V8DebuggerAgent::Client implemntation.
bool canExecuteScripts() const;
- RawPtrWillBeMember<InspectedFrames> m_inspectedFrames;
+ Member<InspectedFrames> m_inspectedFrames;
HashMap<String, String> m_compiledScriptURLs;
};

Powered by Google App Engine
This is Rietveld 408576698