| Index: third_party/WebKit/Source/devtools/front_end/ui/ProgressIndicator.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/ui/ProgressIndicator.js b/third_party/WebKit/Source/devtools/front_end/ui/ProgressIndicator.js
|
| index 73640702da69c0841e2147f91526895c1f1e25aa..b2d36bfa9771be9ffe87d2f8395876bfe151ef74 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/ProgressIndicator.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/ProgressIndicator.js
|
| @@ -46,7 +46,7 @@ WebInspector.ProgressIndicator = function()
|
|
|
| this._isCanceled = false;
|
| this._worked = 0;
|
| -}
|
| +};
|
|
|
| WebInspector.ProgressIndicator.prototype = {
|
| /**
|
| @@ -121,4 +121,4 @@ WebInspector.ProgressIndicator.prototype = {
|
| {
|
| this.setWorked(this._worked + (worked || 1));
|
| }
|
| -}
|
| +};
|
|
|