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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorOverlayHost.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/InspectorOverlayHost.h
diff --git a/third_party/WebKit/Source/core/inspector/InspectorOverlayHost.h b/third_party/WebKit/Source/core/inspector/InspectorOverlayHost.h
index 9956b9360ea9817701e186e8bed32280c6a0cde8..089e716156ba391c7c4803e27f0bc470200336c1 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorOverlayHost.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorOverlayHost.h
@@ -36,12 +36,12 @@
namespace blink {
-class CORE_EXPORT InspectorOverlayHost final : public RefCountedWillBeGarbageCollectedFinalized<InspectorOverlayHost>, public ScriptWrappable {
+class CORE_EXPORT InspectorOverlayHost final : public GarbageCollectedFinalized<InspectorOverlayHost>, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtrWillBeRawPtr<InspectorOverlayHost> create()
+ static RawPtr<InspectorOverlayHost> create()
{
- return adoptRefWillBeNoop(new InspectorOverlayHost());
+ return new InspectorOverlayHost();
}
~InspectorOverlayHost();
DECLARE_TRACE();
@@ -55,7 +55,7 @@ public:
void nextSelector();
void previousSelector();
- class Listener : public WillBeGarbageCollectedMixin {
+ class Listener : public GarbageCollectedMixin {
public:
virtual ~Listener() { }
virtual void overlayResumed() = 0;
@@ -72,7 +72,7 @@ public:
private:
InspectorOverlayHost();
- RawPtrWillBeMember<Listener> m_listener;
+ Member<Listener> m_listener;
};

Powered by Google App Engine
This is Rietveld 408576698