| Index: third_party/WebKit/Source/devtools/front_end/ui_lazy/PieChart.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/ui_lazy/PieChart.js b/third_party/WebKit/Source/devtools/front_end/ui_lazy/PieChart.js
|
| index 36e32ea2c65a4d554dd73dfcf697a5e3fd72093b..3dfa0cf77bf3313c890ae65ac06b93fdf57498d4 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui_lazy/PieChart.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui_lazy/PieChart.js
|
| @@ -51,7 +51,7 @@ WebInspector.PieChart = function(size, formatter, showTotal)
|
| this._slices = [];
|
| this._lastAngle = -Math.PI / 2;
|
| this._setSize(size);
|
| -}
|
| +};
|
|
|
| WebInspector.PieChart.prototype = {
|
| /**
|
| @@ -116,4 +116,4 @@ WebInspector.PieChart.prototype = {
|
| parent.appendChild(child);
|
| return child;
|
| }
|
| -}
|
| +};
|
|
|