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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/SourceLocation.cpp

Issue 2159633002: [DevTools] Generate public versions of protocol classes to be exposed in v8_inspector/public. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: works Created 4 years, 5 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/bindings/core/v8/SourceLocation.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/SourceLocation.cpp b/third_party/WebKit/Source/bindings/core/v8/SourceLocation.cpp
index ca95165fd8186c8902732b2fc1ada078434e7898..9afef5cadaa7618314fb7a93d68b88aa3c2df4b8 100644
--- a/third_party/WebKit/Source/bindings/core/v8/SourceLocation.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/SourceLocation.cpp
@@ -170,7 +170,7 @@ std::unique_ptr<SourceLocation> SourceLocation::isolatedCopy() const
return wrapUnique(new SourceLocation(m_url.isolatedCopy(), m_lineNumber, m_columnNumber, m_stackTrace ? m_stackTrace->isolatedCopy() : nullptr, m_scriptId));
}
-std::unique_ptr<protocol::Runtime::StackTrace> SourceLocation::buildInspectorObject() const
+std::unique_ptr<protocol::Runtime::Exported::StackTrace> SourceLocation::buildInspectorObject() const
{
return m_stackTrace ? m_stackTrace->buildInspectorObject() : nullptr;
}

Powered by Google App Engine
This is Rietveld 408576698