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

Unified Diff: chrome/browser/resources/options/search_page.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: 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/search_page.js
diff --git a/chrome/browser/resources/options/search_page.js b/chrome/browser/resources/options/search_page.js
index 74e8515abe34b5a5309cb030a00f4ba4a20a6a94..c909ce90c254ded9773e9a890d2d810f5cf32f18 100644
--- a/chrome/browser/resources/options/search_page.js
+++ b/chrome/browser/resources/options/search_page.js
@@ -9,6 +9,7 @@ cr.define('options', function() {
/**
* Encapsulated handling of a search bubble.
* @constructor
+ * @extends {HTMLDivElement}
*/
function SearchBubble(text) {
var el = cr.doc.createElement('div');
@@ -113,6 +114,7 @@ cr.define('options', function() {
/**
* Encapsulated handling of the search page.
* @constructor
+ * @extends {cr.ui.pageManager.Page}
*/
function SearchPage() {
Page.call(this, 'search',
@@ -354,7 +356,7 @@ cr.define('options', function() {
$('searchPageNoMatches').hidden = foundMatches;
// Create search balloons for sub-page results.
- length = bubbleControls.length;
+ var length = bubbleControls.length;
for (var i = 0; i < length; i++)
this.createSearchBubble_(bubbleControls[i], text);

Powered by Google App Engine
This is Rietveld 408576698