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

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

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: removed extra files 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.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/SourceLocation.h b/third_party/WebKit/Source/bindings/core/v8/SourceLocation.h
index 69b5af5b46ceb2e49ef49de2d3a03b6e7ff7f723..d4188d7f8a5026473acb75f0f995669b152c982a 100644
--- a/third_party/WebKit/Source/bindings/core/v8/SourceLocation.h
+++ b/third_party/WebKit/Source/bindings/core/v8/SourceLocation.h
@@ -18,8 +18,6 @@ class ExecutionContext;
class TracedValue;
class V8StackTrace;
-namespace protocol { namespace Runtime { class StackTrace; }}
-
class CORE_EXPORT SourceLocation {
public:
// Zero lineNumber and columnNumber mean unknown. Captures current stack trace.
@@ -55,7 +53,7 @@ public:
String toString() const;
// Could be null when stack trace is unknown.
- std::unique_ptr<protocol::Runtime::StackTrace> buildInspectorObject() const;
+ std::unique_ptr<protocol::Runtime::API::StackTrace> buildInspectorObject() const;
private:
SourceLocation(const String& url, unsigned lineNumber, unsigned columnNumber, std::unique_ptr<V8StackTrace>, int scriptId);

Powered by Google App Engine
This is Rietveld 408576698