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

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

Issue 6990026: WebUI: Add password manager search feature. Also add tooltips for the URLs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 7 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 | « no previous file | chrome/browser/resources/options/options.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/options/cookies_view.js
===================================================================
--- chrome/browser/resources/options/cookies_view.js (revision 86229)
+++ chrome/browser/resources/options/cookies_view.js (working copy)
@@ -24,6 +24,20 @@
CookiesView.prototype = {
__proto__: OptionsPage.prototype,
+ /**
+ * The timer id of the timer set on search query change events.
+ * @type {number}
+ * @private
+ */
+ queryDelayTimerId_: 0,
+
+ /**
+ * The most recent search query, or null if the query is empty.
+ * @type {?string}
+ * @private
+ */
+ lastQuery_ : null,
+
initializePage: function() {
OptionsPage.prototype.initializePage.call(this);
@@ -40,8 +54,6 @@
this.addEventListener('visibleChange', this.handleVisibleChange_);
},
- lastQuery_ : null,
-
/**
* Search cookie using text in |cookies-search-box|.
*/
@@ -54,12 +66,10 @@
}
},
- queryDelayTimerId_: 0,
-
/**
* Handles search query changes.
+ * @param {!Event} e The event object.
* @private
- * @param {!Event} e The event object.
*/
handleSearchQueryChange_: function(e) {
if (this.queryDelayTimerId_)
« no previous file with comments | « no previous file | chrome/browser/resources/options/options.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698