1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
7 * @param {function(!WebInspector.UILocation):(boolean|undefined)} updateDelegate
9 WebInspector
.LiveLocation = function(updateDelegate
)
11 this._updateDelegate
= updateDelegate
;
14 WebInspector
.LiveLocation
.prototype = {
17 var uiLocation
= this.uiLocation();
20 if (this._updateDelegate(uiLocation
))
25 * @return {?WebInspector.UILocation}
27 uiLocation: function()
29 throw "Not implemented";
34 // Overridden by subclasses.