| Index: third_party/WebKit/Source/devtools/front_end/sources/SourcesNavigator.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/SourcesNavigator.js b/third_party/WebKit/Source/devtools/front_end/sources/SourcesNavigator.js
|
| index 72f92082778b23b9289a5a847bbb4320b678a0fc..d823f2e54432b820199ebafea50baa5ae3f9821d 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/SourcesNavigator.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/SourcesNavigator.js
|
| @@ -34,7 +34,7 @@ WebInspector.SourcesNavigatorView = function()
|
| {
|
| WebInspector.NavigatorView.call(this);
|
| WebInspector.targetManager.addEventListener(WebInspector.TargetManager.Events.InspectedURLChanged, this._inspectedURLChanged, this);
|
| -}
|
| +};
|
|
|
| WebInspector.SourcesNavigatorView.prototype = {
|
| /**
|
| @@ -93,7 +93,7 @@ WebInspector.SourcesNavigatorView.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.NavigatorView.prototype
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -103,7 +103,7 @@ WebInspector.NetworkNavigatorView = function()
|
| {
|
| WebInspector.NavigatorView.call(this);
|
| WebInspector.targetManager.addEventListener(WebInspector.TargetManager.Events.InspectedURLChanged, this._inspectedURLChanged, this);
|
| -}
|
| +};
|
|
|
| WebInspector.NetworkNavigatorView.prototype = {
|
| /**
|
| @@ -126,7 +126,7 @@ WebInspector.NetworkNavigatorView.prototype = {
|
| return;
|
| var inspectedURL = mainTarget && mainTarget.inspectedURL();
|
| if (!inspectedURL)
|
| - return
|
| + return;
|
| for (var node of this._uiSourceCodeNodes.valuesArray()) {
|
| var uiSourceCode = node.uiSourceCode();
|
| if (uiSourceCode.url() === inspectedURL)
|
| @@ -149,7 +149,7 @@ WebInspector.NetworkNavigatorView.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.NavigatorView.prototype
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -158,7 +158,7 @@ WebInspector.NetworkNavigatorView.prototype = {
|
| WebInspector.FilesNavigatorView = function()
|
| {
|
| WebInspector.NavigatorView.call(this);
|
| -}
|
| +};
|
|
|
| WebInspector.FilesNavigatorView.prototype = {
|
| /**
|
| @@ -183,7 +183,7 @@ WebInspector.FilesNavigatorView.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.NavigatorView.prototype
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -192,7 +192,7 @@ WebInspector.FilesNavigatorView.prototype = {
|
| WebInspector.ContentScriptsNavigatorView = function()
|
| {
|
| WebInspector.NavigatorView.call(this);
|
| -}
|
| +};
|
|
|
| WebInspector.ContentScriptsNavigatorView.prototype = {
|
| /**
|
| @@ -206,7 +206,7 @@ WebInspector.ContentScriptsNavigatorView.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.NavigatorView.prototype
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -220,7 +220,7 @@ WebInspector.SnippetsNavigatorView = function()
|
| newButton.addEventListener("click", this._handleCreateSnippet.bind(this));
|
| toolbar.appendToolbarItem(newButton);
|
| this.element.insertBefore(toolbar.element, this.element.firstChild);
|
| -}
|
| +};
|
|
|
| WebInspector.SnippetsNavigatorView.prototype = {
|
| /**
|
| @@ -307,4 +307,4 @@ WebInspector.SnippetsNavigatorView.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.NavigatorView.prototype
|
| -}
|
| +};
|
|
|