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

Unified Diff: chrome/browser/resources/extensions_ui.html

Issue 132009: fix DOMUI pages after install of .crx (Closed)
Patch Set: touch grd to avoid clobber build Created 11 years, 6 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
« no previous file with comments | « chrome/browser/renderer_host/render_view_host_manager_browsertest.cc ('k') | chrome/chrome.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/extensions_ui.html
diff --git a/chrome/browser/resources/extensions_ui.html b/chrome/browser/resources/extensions_ui.html
index 98937413dd7fee9bc38e9f39e9a71b9a7df80536..d2f3ec862049982d9345c7887416cf96a5c40da3 100644
--- a/chrome/browser/resources/extensions_ui.html
+++ b/chrome/browser/resources/extensions_ui.html
@@ -97,7 +97,13 @@ function showExtensionsData(extensionsData) {
function requestExtensionsData() {
chrome.send("requestExtensionsData", []);
}
+
+// Used for observing function of the backend datasource for this page by
+// tests.
+window.domui_responded_ = false;
+
function returnExtensionsData(extensionsData) {
+ window.domui_responded_ = true;
showExtensionsData(extensionsData);
// We are currently hiding the body because the first call to jstProcess() to
« no previous file with comments | « chrome/browser/renderer_host/render_view_host_manager_browsertest.cc ('k') | chrome/chrome.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698