| Index: third_party/WebKit/Source/devtools/front_end/layer_viewer/PaintProfilerView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/layer_viewer/PaintProfilerView.js b/third_party/WebKit/Source/devtools/front_end/layer_viewer/PaintProfilerView.js
|
| index 016fcf82b8e4eba8ef4eba0fdd64c2c91fc6e7fa..c35e79ac0bb0a8bd6f2b753699676bcb37e614bf 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/layer_viewer/PaintProfilerView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/layer_viewer/PaintProfilerView.js
|
| @@ -68,6 +68,9 @@ WebInspector.PaintProfilerView.Events = {
|
| };
|
|
|
| WebInspector.PaintProfilerView.prototype = {
|
| + /**
|
| + * @override
|
| + */
|
| onResize: function()
|
| {
|
| this._update();
|
| @@ -383,11 +386,17 @@ WebInspector.LogTreeElement = function(ownerView, logItem)
|
| };
|
|
|
| WebInspector.LogTreeElement.prototype = {
|
| + /**
|
| + * @override
|
| + */
|
| onattach: function()
|
| {
|
| this._update();
|
| },
|
|
|
| + /**
|
| + * @override
|
| + */
|
| onpopulate: function()
|
| {
|
| for (var param in this._logItem.params)
|
| @@ -467,6 +476,9 @@ WebInspector.LogPropertyTreeElement._appendLogPropertyItem = function(element, n
|
| };
|
|
|
| WebInspector.LogPropertyTreeElement.prototype = {
|
| + /**
|
| + * @override
|
| + */
|
| onattach: function()
|
| {
|
| var title = createDocumentFragment();
|
|
|