| Index: chrome/browser/resources/net_internals/view.js
|
| diff --git a/chrome/browser/resources/net_internals/view.js b/chrome/browser/resources/net_internals/view.js
|
| index 05e538f1c5a573faec1896d7c5bd1edb854513c2..dd0be158967e2758292a8b51954fd79c848616ce 100644
|
| --- a/chrome/browser/resources/net_internals/view.js
|
| +++ b/chrome/browser/resources/net_internals/view.js
|
| @@ -82,8 +82,7 @@ var View = (function() {
|
| * values. It's included separately so most views don't have to depend on
|
| * its specifics.
|
| */
|
| - onLoadLogStart: function(polledData, tabData, logDump) {
|
| - },
|
| + onLoadLogStart: function(polledData, tabData, logDump) {},
|
|
|
| /**
|
| * Called as the final step of loading a log file. Arguments are the same
|
| @@ -193,8 +192,9 @@ var WindowView = (function() {
|
| },
|
|
|
| resetGeometry: function() {
|
| - this.setGeometry(0, 0, document.documentElement.clientWidth,
|
| - document.documentElement.clientHeight);
|
| + this.setGeometry(
|
| + 0, 0, document.documentElement.clientWidth,
|
| + document.documentElement.clientHeight);
|
| }
|
| };
|
|
|
|
|