| Index: third_party/WebKit/Source/devtools/front_end/bindings/LiveLocation.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/bindings/LiveLocation.js b/third_party/WebKit/Source/devtools/front_end/bindings/LiveLocation.js
|
| index 12625e1b3189855ba2e7e7f567b0b07a0fcd7ccc..85e252788f7c35e5898df97d56eb97f3188b8661 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/bindings/LiveLocation.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/bindings/LiveLocation.js
|
| @@ -3,7 +3,7 @@
|
| // found in the LICENSE file.
|
|
|
| /** @interface */
|
| -WebInspector.LiveLocation = function() {}
|
| +WebInspector.LiveLocation = function() {};
|
|
|
| WebInspector.LiveLocation.prototype = {
|
| update: function() {},
|
| @@ -19,7 +19,7 @@ WebInspector.LiveLocation.prototype = {
|
| * @return {boolean}
|
| */
|
| isBlackboxed: function() {}
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -32,7 +32,7 @@ WebInspector.LiveLocationWithPool = function(updateDelegate, locationPool)
|
| this._updateDelegate = updateDelegate;
|
| this._locationPool = locationPool;
|
| this._locationPool._add(this);
|
| -}
|
| +};
|
|
|
| WebInspector.LiveLocationWithPool.prototype = {
|
| /**
|
| @@ -69,7 +69,7 @@ WebInspector.LiveLocationWithPool.prototype = {
|
| {
|
| throw "Not implemented";
|
| }
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -77,7 +77,7 @@ WebInspector.LiveLocationWithPool.prototype = {
|
| WebInspector.LiveLocationPool = function()
|
| {
|
| this._locations = new Set();
|
| -}
|
| +};
|
|
|
| WebInspector.LiveLocationPool.prototype = {
|
| /**
|
| @@ -101,4 +101,4 @@ WebInspector.LiveLocationPool.prototype = {
|
| for (var location of this._locations)
|
| location.dispose();
|
| }
|
| -}
|
| +};
|
|
|