| Index: third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.cpp
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.cpp b/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.cpp
|
| index e1dbb812edeeb0a5910f9ece19d30c70c2fdb9ab..65c8f8af3307afd0a8a867100c59c328a8d60330 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.cpp
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.cpp
|
| @@ -909,15 +909,15 @@ void V8DebuggerAgentImpl::setBlackboxedRanges(ErrorString* error, const String16
|
| positions.reserve(inPositions->length());
|
| for (size_t i = 0; i < inPositions->length(); ++i) {
|
| protocol::Debugger::ScriptPosition* position = inPositions->get(i);
|
| - if (position->getLine() < 0) {
|
| + if (position->getLineNumber() < 0) {
|
| *error = "Position missing 'line' or 'line' < 0.";
|
| return;
|
| }
|
| - if (position->getColumn() < 0) {
|
| + if (position->getColumnNumber() < 0) {
|
| *error = "Position missing 'column' or 'column' < 0.";
|
| return;
|
| }
|
| - positions.push_back(std::make_pair(position->getLine(), position->getColumn()));
|
| + positions.push_back(std::make_pair(position->getLineNumber(), position->getColumnNumber()));
|
| }
|
|
|
| for (size_t i = 1; i < positions.size(); ++i) {
|
|
|