Index: chrome/browser/resources/net_internals/main.js |
diff --git a/chrome/browser/resources/net_internals/main.js b/chrome/browser/resources/net_internals/main.js |
index 33d629345615f5b55f75ae8e72536696b210de33..6b56557d625814e29980468a0332cc0c4a2bd00b 100644 |
--- a/chrome/browser/resources/net_internals/main.js |
+++ b/chrome/browser/resources/net_internals/main.js |
@@ -72,8 +72,8 @@ var MainView = (function() { |
// log file). Below it we will position the main tabs and their content |
// area. |
this.topBarView_ = TopBarView.getInstance(this); |
- var verticalSplitView = new VerticalSplitView( |
- this.topBarView_, this.tabSwitcher_); |
+ var verticalSplitView = |
+ new VerticalSplitView(this.topBarView_, this.tabSwitcher_); |
superClass.call(this, verticalSplitView); |
@@ -325,15 +325,15 @@ ConstantsObserver.prototype.onReceivedConstants = function(receivedConstants) { |
*/ |
function areValidConstants(receivedConstants) { |
return typeof(receivedConstants) == 'object' && |
- typeof(receivedConstants.logEventTypes) == 'object' && |
- typeof(receivedConstants.clientInfo) == 'object' && |
- typeof(receivedConstants.logEventPhase) == 'object' && |
- typeof(receivedConstants.logSourceType) == 'object' && |
- typeof(receivedConstants.loadFlag) == 'object' && |
- typeof(receivedConstants.netError) == 'object' && |
- typeof(receivedConstants.addressFamily) == 'object' && |
- typeof(receivedConstants.timeTickOffset) == 'string' && |
- typeof(receivedConstants.logFormatVersion) == 'number'; |
+ typeof(receivedConstants.logEventTypes) == 'object' && |
+ typeof(receivedConstants.clientInfo) == 'object' && |
+ typeof(receivedConstants.logEventPhase) == 'object' && |
+ typeof(receivedConstants.logSourceType) == 'object' && |
+ typeof(receivedConstants.loadFlag) == 'object' && |
+ typeof(receivedConstants.netError) == 'object' && |
+ typeof(receivedConstants.addressFamily) == 'object' && |
+ typeof(receivedConstants.timeTickOffset) == 'string' && |
+ typeof(receivedConstants.logFormatVersion) == 'number'; |
} |
/** |