Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(660)

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/network/BlockedURLsPane.js

Issue 2205123003: DevTools: introduce view locations, allow opening views by id. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments addressed Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698