| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2008, 2010 Google Inc. All rights reserved. | 2 * Copyright (c) 2008, 2010 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #ifndef ScriptCallStack_h | 31 #ifndef ScriptCallStack_h |
| 32 #define ScriptCallStack_h | 32 #define ScriptCallStack_h |
| 33 | 33 |
| 34 #include "InspectorTypeBuilder.h" | 34 #include "InspectorTypeBuilder.h" |
| 35 | |
| 36 #include "core/inspector/ScriptCallFrame.h" | 35 #include "core/inspector/ScriptCallFrame.h" |
| 37 #include <wtf/Forward.h> | 36 #include "wtf/Forward.h" |
| 38 #include <wtf/RefCounted.h> | 37 #include "wtf/RefCounted.h" |
| 39 #include <wtf/Vector.h> | 38 #include "wtf/Vector.h" |
| 40 | 39 |
| 41 namespace WebCore { | 40 namespace WebCore { |
| 42 | 41 |
| 43 class ScriptCallStack : public RefCounted<ScriptCallStack> { | 42 class ScriptCallStack : public RefCounted<ScriptCallStack> { |
| 44 public: | 43 public: |
| 45 static const size_t maxCallStackSizeToCapture = 200; | 44 static const size_t maxCallStackSizeToCapture = 200; |
| 46 | 45 |
| 47 static PassRefPtr<ScriptCallStack> create(Vector<ScriptCallFrame>&); | 46 static PassRefPtr<ScriptCallStack> create(Vector<ScriptCallFrame>&); |
| 48 | 47 |
| 49 ~ScriptCallStack(); | 48 ~ScriptCallStack(); |
| 50 | 49 |
| 51 const ScriptCallFrame &at(size_t) const; | 50 const ScriptCallFrame &at(size_t) const; |
| 52 size_t size() const; | 51 size_t size() const; |
| 53 | 52 |
| 54 bool isEqual(ScriptCallStack*) const; | 53 bool isEqual(ScriptCallStack*) const; |
| 55 | 54 |
| 56 PassRefPtr<TypeBuilder::Array<TypeBuilder::Console::CallFrame> > buildInspec
torArray() const; | 55 PassRefPtr<TypeBuilder::Array<TypeBuilder::Console::CallFrame> > buildInspec
torArray() const; |
| 57 | 56 |
| 58 private: | 57 private: |
| 59 ScriptCallStack(Vector<ScriptCallFrame>&); | 58 ScriptCallStack(Vector<ScriptCallFrame>&); |
| 60 | 59 |
| 61 Vector<ScriptCallFrame> m_frames; | 60 Vector<ScriptCallFrame> m_frames; |
| 62 }; | 61 }; |
| 63 | 62 |
| 64 } // namespace WebCore | 63 } // namespace WebCore |
| 65 | 64 |
| 66 #endif // ScriptCallStack_h | 65 #endif // ScriptCallStack_h |
| OLD | NEW |