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

Unified Diff: chrome/browser/resources/md_downloads/crisper.js

Issue 1899043003: MD Downloads/History: unify page and toolbar background colors (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: the colors, duke, the colors! Created 4 years, 8 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/md_downloads/downloads.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/md_downloads/crisper.js
diff --git a/chrome/browser/resources/md_downloads/crisper.js b/chrome/browser/resources/md_downloads/crisper.js
index f720148cd7cce7b70f2b0063994c07beb45aa865..dcb91ab389755b12ee9089d627b7ca3701aef4d0 100644
--- a/chrome/browser/resources/md_downloads/crisper.js
+++ b/chrome/browser/resources/md_downloads/crisper.js
@@ -93,7 +93,7 @@ function assertInstanceof(value, type, opt_message) {
* @template T
*/
function PromiseResolver() {
- /** @private {function(T): void} */
+ /** @private {function(T=): void} */
this.resolve_;
/** @private {function(*=): void} */
@@ -111,7 +111,7 @@ PromiseResolver.prototype = {
get promise() { return this.promise_; },
set promise(p) { assertNotReached(); },
- /** @return {function(T): void} */
+ /** @return {function(T=): void} */
get resolve() { return this.resolve_; },
set resolve(r) { assertNotReached(); },
« no previous file with comments | « no previous file | chrome/browser/resources/md_downloads/downloads.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698