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

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

Issue 6099016: Drastically reduce the number of redraws when editing content settings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 11 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/content_settings.js
diff --git a/chrome/browser/resources/options/content_settings.js b/chrome/browser/resources/options/content_settings.js
index a9a80bb3d56b5bccd526949fdd10e4d193501511..46af5315fee1538a2f9781213dc0185345cfbd70 100644
--- a/chrome/browser/resources/options/content_settings.js
+++ b/chrome/browser/resources/options/content_settings.js
@@ -99,10 +99,7 @@ cr.define('options', function() {
' list[mode=normal]');
exceptionsList.reset();
- for (var i = 0; i < list.length; i++) {
- exceptionsList.addException(list[i]);
- }
- exceptionsList.redraw();
+ exceptionsList.addExceptions(list);
arv (Not doing code reviews) 2011/01/12 00:42:32 You could also have used startBatchUpdates() and e
};
ContentSettings.setOTRExceptions = function(type, list) {
@@ -113,10 +110,7 @@ cr.define('options', function() {
exceptionsList.parentNode.classList.remove('hidden');
exceptionsList.reset();
- for (var i = 0; i < list.length; i++) {
- exceptionsList.addException(list[i]);
- }
- exceptionsList.redraw();
+ exceptionsList.addExceptions(list);
};
/**

Powered by Google App Engine
This is Rietveld 408576698