Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2355)

Unified Diff: chrome/browser/resources/net_internals/main.js

Issue 2602473003: Run tools/clang-format-js on chrome/browser/resources/net_internals (Closed)
Patch Set: drop dep Created 3 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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';
}
/**
« no previous file with comments | « chrome/browser/resources/net_internals/log_view_painter.js ('k') | chrome/browser/resources/net_internals/modules_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698