| Index: Source/devtools/front_end/sources/StyleSheetOutlineDialog.js
 | 
| diff --git a/Source/devtools/front_end/sources/StyleSheetOutlineDialog.js b/Source/devtools/front_end/sources/StyleSheetOutlineDialog.js
 | 
| index 94d6b662f91c8d672b452b97f9b5008bb867dd9e..c2ceabfb51b26708382bfd4db9718ea37a04f808 100644
 | 
| --- a/Source/devtools/front_end/sources/StyleSheetOutlineDialog.js
 | 
| +++ b/Source/devtools/front_end/sources/StyleSheetOutlineDialog.js
 | 
| @@ -42,17 +42,16 @@ WebInspector.StyleSheetOutlineDialog = function(uiSourceCode, selectItemCallback
 | 
|  }
 | 
|  
 | 
|  /**
 | 
| - * @param {!WebInspector.Widget} view
 | 
|   * @param {!WebInspector.UISourceCode} uiSourceCode
 | 
|   * @param {function(number, number)} selectItemCallback
 | 
|   */
 | 
| -WebInspector.StyleSheetOutlineDialog.show = function(view, uiSourceCode, selectItemCallback)
 | 
| +WebInspector.StyleSheetOutlineDialog.show = function(uiSourceCode, selectItemCallback)
 | 
|  {
 | 
|      if (WebInspector.Dialog.currentInstance())
 | 
|          return;
 | 
|      var delegate = new WebInspector.StyleSheetOutlineDialog(uiSourceCode, selectItemCallback);
 | 
|      var filteredItemSelectionDialog = new WebInspector.FilteredItemSelectionDialog(delegate);
 | 
| -    WebInspector.Dialog.show(view.element, filteredItemSelectionDialog);
 | 
| +    WebInspector.Dialog.show(filteredItemSelectionDialog);
 | 
|  }
 | 
|  
 | 
|  WebInspector.StyleSheetOutlineDialog.prototype = {
 | 
| 
 |