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

Unified Diff: chrome/browser/resources/options/extension_settings.js

Issue 7782026: Switch from chrome://extensions to chrome://settings/extensionSettings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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/options/extension_settings.js
===================================================================
--- chrome/browser/resources/options/extension_settings.js (revision 99658)
+++ chrome/browser/resources/options/extension_settings.js (working copy)
@@ -2,6 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+// Used for observing function of the backend datasource for this page by
+// tests.
+var webui_responded_ = false;
Finnur 2011/09/08 11:40:57 The download test uses this (it was in the old chr
+
cr.define('options', function() {
var OptionsPage = options.OptionsPage;
var ExtensionsList = options.ExtensionsList;
@@ -143,6 +147,8 @@
* the current state of installed extensions.
*/
ExtensionSettings.returnExtensionsData = function(extensionsData) {
+ webui_responded_ = true;
+
$('no-extensions').hidden = true;
$('suggest-gallery').hidden = true;
$('get-more-extensions-container').hidden = true;

Powered by Google App Engine
This is Rietveld 408576698