Index: chrome/browser/resources/extensions/extensions.js |
diff --git a/chrome/browser/resources/extensions/extensions.js b/chrome/browser/resources/extensions/extensions.js |
index 0c1e66d9c785a31faa1c6e6ca3625cafc1998ccc..8fa951415505f5eed959912ca40f8a35108977ed 100644 |
--- a/chrome/browser/resources/extensions/extensions.js |
+++ b/chrome/browser/resources/extensions/extensions.js |
@@ -15,6 +15,14 @@ |
<include src="chromeos/kiosk_apps.js"></include> |
</if> |
+document.addEventListener('DOMContentLoaded', function() { |
Devlin
2014/06/27 22:31:08
ExtensionLoader should have as few dependencies on
gpdavis
2014/06/27 23:42:54
I'll give that a try and see if it works the same.
gpdavis
2014/06/28 02:31:17
Looks good!
Done.
|
+ chrome.send('extensionLoaderDisplayFailures'); |
Devlin
2014/06/27 22:31:09
nit: indentation.
gpdavis
2014/06/28 02:31:17
Done.
|
+}); |
+ |
+window.addEventListener('beforeunload', function() { |
Devlin
2014/06/27 22:31:09
nit: indentation.
gpdavis
2014/06/28 02:31:17
Done.
|
+ chrome.send('extensionLoaderSetDisplayLoading'); |
+}); |
+ |
// Used for observing function of the backend datasource for this page by |
// tests. |
var webuiResponded = false; |