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

Unified Diff: Source/core/inspector/PromiseTracker.h

Issue 1116743002: Oilpan: fix build after r194661. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 8 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
« no previous file with comments | « no previous file | Source/core/inspector/PromiseTracker.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/PromiseTracker.h
diff --git a/Source/core/inspector/PromiseTracker.h b/Source/core/inspector/PromiseTracker.h
index db1dd97191e51ea9f2c50c98b37fc83d002e10cb..d3f0b96aa4876cf7a0ca3b2f61be6f500a5f7fab 100644
--- a/Source/core/inspector/PromiseTracker.h
+++ b/Source/core/inspector/PromiseTracker.h
@@ -20,9 +20,8 @@ namespace blink {
class ScriptState;
class ScriptValue;
-class PromiseTracker final : public NoBaseWillBeGarbageCollected<PromiseTracker> {
+class PromiseTracker final : public NoBaseWillBeGarbageCollectedFinalized<PromiseTracker> {
WTF_MAKE_NONCOPYABLE(PromiseTracker);
- DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(PromiseTracker);
public:
class Listener : public WillBeGarbageCollectedMixin {
public:
@@ -35,6 +34,8 @@ public:
return adoptPtrWillBeNoop(new PromiseTracker(listener, isolate));
}
+ ~PromiseTracker();
+
bool isEnabled() const { return m_isEnabled; }
void setEnabled(bool enabled, bool captureStacks);
void clear();
« no previous file with comments | « no previous file | Source/core/inspector/PromiseTracker.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698