| 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);
|
|
|