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

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

Issue 543493002: Compile chrome://settings, part 2: reduce from 950 to 400 errors (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@F_settings
Patch Set: rebase? rebase! Created 6 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/origin_resources_list.js
diff --git a/chrome/browser/resources/options/origin_resources_list.js b/chrome/browser/resources/options/origin_resources_list.js
index 7124c67c77ff2ca6ed29548c6da3ca342490133b..144ba0b00469fba9e097738a776d46aee37f5f62 100644
--- a/chrome/browser/resources/options/origin_resources_list.js
+++ b/chrome/browser/resources/options/origin_resources_list.js
@@ -3,12 +3,14 @@
// found in the LICENSE file.
cr.define('options', function() {
- /** @const */ List = cr.ui.List;
- /** @const */ ListItem = cr.ui.ListItem;
+ /** @const */ var List = cr.ui.List;
+ /** @const */ var ListItem = cr.ui.ListItem;
/**
* Creates a new list item for the origin's data.
* @param {!Object} origin Data used to create the origin list item.
+ * @constructor
+ * @extends {cr.ui.ListItem}
*/
function OriginListItem(origin) {
var el = cr.doc.createElement('div');
@@ -52,6 +54,10 @@ cr.define('options', function() {
}
};
+ /**
+ * @constructor
+ * @extends {cr.ui.List}
+ */
var OriginList = cr.ui.define('list');
OriginList.prototype = {
« no previous file with comments | « chrome/browser/resources/options/options_page.js ('k') | chrome/browser/resources/options/password_manager.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698