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

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/V8StackTraceImpl.h

Issue 2295913003: [DevTools] Switch from platform/v8_inspector to v8/v8-inspector.h. (Closed)
Patch Set: rebase Created 4 years, 3 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
Index: third_party/WebKit/Source/platform/v8_inspector/V8StackTraceImpl.h
diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8StackTraceImpl.h b/third_party/WebKit/Source/platform/v8_inspector/V8StackTraceImpl.h
deleted file mode 100644
index 03569ca061a38cfcefd9ac431fb97456b34d39e6..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/platform/v8_inspector/V8StackTraceImpl.h
+++ /dev/null
@@ -1,85 +0,0 @@
-// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef V8StackTraceImpl_h
-#define V8StackTraceImpl_h
-
-#include "platform/v8_inspector/Allocator.h"
-#include "platform/v8_inspector/protocol/Forward.h"
-#include "platform/v8_inspector/protocol/Runtime.h"
-#include "platform/v8_inspector/public/V8StackTrace.h"
-
-#include <vector>
-
-namespace v8_inspector {
-
-class TracedValue;
-class V8Debugger;
-
-// Note: async stack trace may have empty top stack with non-empty tail to indicate
-// that current native-only state had some async story.
-// On the other hand, any non-top async stack is guaranteed to be non-empty.
-class V8StackTraceImpl final : public V8StackTrace {
- V8_INSPECTOR_DISALLOW_COPY(V8StackTraceImpl);
-public:
- static const size_t maxCallStackSizeToCapture = 200;
-
- class Frame {
- public:
- Frame();
- Frame(const String16& functionName, const String16& scriptId, const String16& scriptName, int lineNumber, int column = 0);
- ~Frame();
-
- const String16& functionName() const { return m_functionName; }
- const String16& scriptId() const { return m_scriptId; }
- const String16& sourceURL() const { return m_scriptName; }
- int lineNumber() const { return m_lineNumber; }
- int columnNumber() const { return m_columnNumber; }
- Frame clone() const;
-
- private:
- friend class V8StackTraceImpl;
- std::unique_ptr<protocol::Runtime::CallFrame> buildInspectorObject() const;
- void toTracedValue(TracedValue*) const;
-
- String16 m_functionName;
- String16 m_scriptId;
- String16 m_scriptName;
- int m_lineNumber;
- int m_columnNumber;
- };
-
- static void setCaptureStackTraceForUncaughtExceptions(v8::Isolate*, bool capture);
- static std::unique_ptr<V8StackTraceImpl> create(V8Debugger*, int contextGroupId, v8::Local<v8::StackTrace>, size_t maxStackSize, const String16& description = String16());
- static std::unique_ptr<V8StackTraceImpl> capture(V8Debugger*, int contextGroupId, size_t maxStackSize, const String16& description = String16());
-
- // This method drops the async chain. Use cloneImpl() instead.
- std::unique_ptr<V8StackTrace> clone() override;
- std::unique_ptr<V8StackTraceImpl> cloneImpl();
- std::unique_ptr<protocol::Runtime::StackTrace> buildInspectorObjectForTail(V8Debugger*) const;
- std::unique_ptr<protocol::Runtime::StackTrace> buildInspectorObjectImpl() const;
- ~V8StackTraceImpl() override;
-
- // V8StackTrace implementation.
- bool isEmpty() const override { return !m_frames.size(); };
- StringView topSourceURL() const override;
- int topLineNumber() const override;
- int topColumnNumber() const override;
- StringView topScriptId() const override;
- StringView topFunctionName() const override;
- std::unique_ptr<protocol::Runtime::API::StackTrace> buildInspectorObject() const override;
- std::unique_ptr<StringBuffer> toString() const override;
-
-private:
- V8StackTraceImpl(int contextGroupId, const String16& description, std::vector<Frame>& frames, std::unique_ptr<V8StackTraceImpl> parent);
-
- int m_contextGroupId;
- String16 m_description;
- std::vector<Frame> m_frames;
- std::unique_ptr<V8StackTraceImpl> m_parent;
-};
-
-} // namespace v8_inspector
-
-#endif // V8StackTraceImpl_h

Powered by Google App Engine
This is Rietveld 408576698