| OLD | NEW |
| 1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 /** | 5 /** |
| 6 * @constructor | 6 * @constructor |
| 7 * @extends {WebInspector.VBox} | 7 * @extends {WebInspector.VBox} |
| 8 */ | 8 */ |
| 9 WebInspector.BlockedURLsPane = function() | 9 WebInspector.BlockedURLsPane = function() |
| 10 { | 10 { |
| (...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 | 297 |
| 298 WebInspector.BlockedURLsPane.ActionDelegate.prototype = { | 298 WebInspector.BlockedURLsPane.ActionDelegate.prototype = { |
| 299 /** | 299 /** |
| 300 * @override | 300 * @override |
| 301 * @param {!WebInspector.Context} context | 301 * @param {!WebInspector.Context} context |
| 302 * @param {string} actionId | 302 * @param {string} actionId |
| 303 * @return {boolean} | 303 * @return {boolean} |
| 304 */ | 304 */ |
| 305 handleAction: function(context, actionId) | 305 handleAction: function(context, actionId) |
| 306 { | 306 { |
| 307 WebInspector.inspectorView.showViewInDrawer("network.blocked-urls"); | 307 WebInspector.viewManager.showView("network.blocked-urls"); |
| 308 return true; | 308 return true; |
| 309 } | 309 } |
| 310 } | 310 } |
| 311 | 311 |
| OLD | NEW |