| Index: third_party/WebKit/Source/devtools/front_end/sources/SourcesView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/SourcesView.js b/third_party/WebKit/Source/devtools/front_end/sources/SourcesView.js
|
| index c8df7761489278604019d0d5a2cbe0c10ae74195..2cc408a61f52bcd4ea133d7c7f855d95c39a1915 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/SourcesView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/SourcesView.js
|
| @@ -772,12 +772,12 @@ WebInspector.SourcesView.SwitchFileActionDelegate._nextFile = function(currentUI
|
|
|
| var uiSourceCodes = currentUISourceCode.project().uiSourceCodes();
|
| var candidates = [];
|
| - var path = currentUISourceCode.parentPath();
|
| + var path = currentUISourceCode.parentURL();
|
| var name = currentUISourceCode.name();
|
| var namePrefix = fileNamePrefix(name);
|
| for (var i = 0; i < uiSourceCodes.length; ++i) {
|
| var uiSourceCode = uiSourceCodes[i];
|
| - if (path !== uiSourceCode.parentPath())
|
| + if (path !== uiSourceCode.parentURL())
|
| continue;
|
| if (fileNamePrefix(uiSourceCode.name()) === namePrefix)
|
| candidates.push(uiSourceCode.name());
|
|
|