Searched defs:ScriptCallStack (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DScriptCallStack.h42 class ScriptCallStack : public RefCounted<ScriptCallStack> { class in namespace:WebCore
46 static PassRefPtr<ScriptCallStack> create(Vector<ScriptCallFrame>&);
48 ~ScriptCallStack();
53 bool isEqual(ScriptCallStack*) const;
58 ScriptCallStack(Vector<ScriptCallFrame>&);
H A DScriptCallStack.cpp32 #include "core/inspector/ScriptCallStack.h"
38 PassRefPtr<ScriptCallStack> ScriptCallStack::create(Vector<ScriptCallFrame>& frames)
40 return adoptRef(new ScriptCallStack(frames));
43 ScriptCallStack::ScriptCallStack(Vector<ScriptCallFrame>& frames) function in class:WebCore::ScriptCallStack
48 ScriptCallStack::~ScriptCallStack()
52 const ScriptCallFrame &ScriptCallStack::at(size_t index) const
58 size_t ScriptCallStack
[all...]

Completed in 75 milliseconds