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

Unified Diff: Source/core/inspector/ScriptAsyncCallStack.cpp

Issue 896603002: Oilpan: declare and define various inspector class dtors out-of-line. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 11 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 | « Source/core/inspector/ScriptAsyncCallStack.h ('k') | Source/core/inspector/ScriptCallStack.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/ScriptAsyncCallStack.cpp
diff --git a/Source/core/inspector/ScriptAsyncCallStack.cpp b/Source/core/inspector/ScriptAsyncCallStack.cpp
index 744cb870e3bfc3759943bc967a1aa610cf585251..d6e881d5e7a5d46731ee18173e8a827972013368 100644
--- a/Source/core/inspector/ScriptAsyncCallStack.cpp
+++ b/Source/core/inspector/ScriptAsyncCallStack.cpp
@@ -7,8 +7,6 @@
namespace blink {
-DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(ScriptAsyncCallStack);
-
PassRefPtrWillBeRawPtr<ScriptAsyncCallStack> ScriptAsyncCallStack::create(const String& description, PassRefPtrWillBeRawPtr<ScriptCallStack> callStack, PassRefPtrWillBeRawPtr<ScriptAsyncCallStack> asyncStackTrace)
{
return adoptRefWillBeNoop(new ScriptAsyncCallStack(description, callStack, asyncStackTrace));
@@ -22,6 +20,10 @@ ScriptAsyncCallStack::ScriptAsyncCallStack(const String& description, PassRefPtr
ASSERT(m_callStack);
}
+ScriptAsyncCallStack::~ScriptAsyncCallStack()
+{
+}
+
PassRefPtr<TypeBuilder::Console::AsyncStackTrace> ScriptAsyncCallStack::buildInspectorObject() const
{
RefPtr<TypeBuilder::Console::AsyncStackTrace> result = TypeBuilder::Console::AsyncStackTrace::create()
« no previous file with comments | « Source/core/inspector/ScriptAsyncCallStack.h ('k') | Source/core/inspector/ScriptCallStack.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698