Index: chrome/browser/resources/net_internals/modules_view.js |
diff --git a/chrome/browser/resources/net_internals/modules_view.js b/chrome/browser/resources/net_internals/modules_view.js |
index 0bf7b52ae6eef0bdb1128f208227bf25759184a3..dbb0b9cbb2f259a04e845caf3d6c8bfe87de0555 100644 |
--- a/chrome/browser/resources/net_internals/modules_view.js |
+++ b/chrome/browser/resources/net_internals/modules_view.js |
@@ -25,10 +25,8 @@ var ModulesView = (function() { |
// Call superclass's constructor. |
superClass.call(this, ModulesView.MAIN_BOX_ID); |
- this.serviceProvidersTbody_ = |
- $(ModulesView.SERVICE_PROVIDERS_TBODY_ID); |
- this.namespaceProvidersTbody_ = |
- $(ModulesView.NAMESPACE_PROVIDERS_TBODY_ID); |
+ this.serviceProvidersTbody_ = $(ModulesView.SERVICE_PROVIDERS_TBODY_ID); |
+ this.namespaceProvidersTbody_ = $(ModulesView.NAMESPACE_PROVIDERS_TBODY_ID); |
g_browser.addServiceProvidersObserver(this, false); |
g_browser.addExtensionInfoObserver(this, true); |
@@ -125,8 +123,7 @@ var ModulesView = (function() { |
* Returns the type of a namespace provider as a string. |
*/ |
ModulesView.getNamespaceProviderType = function(namespaceProvider) { |
- return tryGetValueWithKey(NAMESPACE_PROVIDER_PTYPE, |
- namespaceProvider.type); |
+ return tryGetValueWithKey(NAMESPACE_PROVIDER_PTYPE, namespaceProvider.type); |
}; |
return ModulesView; |