Chromium Code Reviews| Index: third_party/WebKit/Source/devtools/front_end/main/RemoteLocationManager.js |
| diff --git a/third_party/WebKit/Source/devtools/front_end/main/RemoteLocationManager.js b/third_party/WebKit/Source/devtools/front_end/main/RemoteLocationManager.js |
| index 16c032a9321862ffd11905b3ccca0607d9c0b71f..1f3ccfc622e023b717af8eefb64a3304ab196b18 100644 |
| --- a/third_party/WebKit/Source/devtools/front_end/main/RemoteLocationManager.js |
| +++ b/third_party/WebKit/Source/devtools/front_end/main/RemoteLocationManager.js |
| @@ -140,9 +140,9 @@ WebInspector.RemoteLocationConnection.prototype = { |
| this._agent.sendMessage(this._targetId, JSON.stringify(messageObject)); |
| }, |
| - _close: function() |
| + forceClose: function() |
|
dgozman
2016/10/15 00:26:26
@override
|
| { |
| - this.connectionClosed("node_detached"); |
| + this._agent.detach(this._targetId, ()=>{}); |
|
dgozman
2016/10/15 00:26:26
() => {}
|
| }, |
| __proto__: InspectorBackendClass.Connection.prototype |