| 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.NetworkConfigView = function() | 9 WebInspector.NetworkConfigView = function() |
| 10 { | 10 { |
| (...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 }, | 237 }, |
| 238 { | 238 { |
| 239 title: "Safari", | 239 title: "Safari", |
| 240 values: [ | 240 values: [ |
| 241 {title: "Safari \u2014 iPad iOS 9", value: "Mozilla/5.0 (iPad; CPU O
S 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile
/13B137 Safari/601.1"}, | 241 {title: "Safari \u2014 iPad iOS 9", value: "Mozilla/5.0 (iPad; CPU O
S 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile
/13B137 Safari/601.1"}, |
| 242 {title: "Safari \u2014 iPhone iOS 9", value: "Mozilla/5.0 (iPhone; C
PU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version
/9.0 Mobile/13B137 Safari/601.1"}, | 242 {title: "Safari \u2014 iPhone iOS 9", value: "Mozilla/5.0 (iPhone; C
PU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version
/9.0 Mobile/13B137 Safari/601.1"}, |
| 243 {title: "Safari \u2014 Mac", value: "Mozilla/5.0 (Macintosh; Intel M
ac OS X 10_9_3) AppleWebKit/537.75.14 (KHTML, like Gecko) Version/7.0.3 Safari/7
046A194A"} | 243 {title: "Safari \u2014 Mac", value: "Mozilla/5.0 (Macintosh; Intel M
ac OS X 10_9_3) AppleWebKit/537.75.14 (KHTML, like Gecko) Version/7.0.3 Safari/7
046A194A"} |
| 244 ] | 244 ] |
| 245 } | 245 } |
| 246 ] | 246 ] |
| 247 |
| 248 /** |
| 249 * @constructor |
| 250 * @implements {WebInspector.ActionDelegate} |
| 251 */ |
| 252 WebInspector.NetworkConfigView.ShowActionDelegate = function() |
| 253 { |
| 254 } |
| 255 |
| 256 WebInspector.NetworkConfigView.ShowActionDelegate.prototype = { |
| 257 /** |
| 258 * @override |
| 259 * @param {!WebInspector.Context} context |
| 260 * @param {string} actionId |
| 261 * @return {boolean} |
| 262 */ |
| 263 handleAction: function(context, actionId) |
| 264 { |
| 265 WebInspector.inspectorView.showViewInDrawer("network.config"); |
| 266 return true; |
| 267 } |
| 268 } |
| OLD | NEW |