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

Unified Diff: Source/core/inspector/ScriptCallStack.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/ScriptCallStack.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/ScriptCallStack.cpp
diff --git a/Source/core/inspector/ScriptCallStack.cpp b/Source/core/inspector/ScriptCallStack.cpp
index 1bd7b6b7a39befa06650f7f54d002838d0eb30c1..1aa140a00802a1197e5c1277c90536c03eb5f066 100644
--- a/Source/core/inspector/ScriptCallStack.cpp
+++ b/Source/core/inspector/ScriptCallStack.cpp
@@ -36,8 +36,6 @@
namespace blink {
-DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(ScriptCallStack);
-
PassRefPtrWillBeRawPtr<ScriptCallStack> ScriptCallStack::create(Vector<ScriptCallFrame>& frames)
{
return adoptRefWillBeNoop(new ScriptCallStack(frames));
@@ -48,6 +46,10 @@ ScriptCallStack::ScriptCallStack(Vector<ScriptCallFrame>& frames)
m_frames.swap(frames);
}
+ScriptCallStack::~ScriptCallStack()
+{
+}
+
const ScriptCallFrame &ScriptCallStack::at(size_t index) const
{
ASSERT(m_frames.size() > index);
« no previous file with comments | « Source/core/inspector/ScriptCallStack.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698