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

Unified Diff: third_party/WebKit/Source/devtools/front_end/help/Help.js

Issue 2766903002: DevTools: make what's new look nice. (Closed)
Patch Set: image added Created 3 years, 9 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: third_party/WebKit/Source/devtools/front_end/help/Help.js
diff --git a/third_party/WebKit/Source/devtools/front_end/help/Help.js b/third_party/WebKit/Source/devtools/front_end/help/Help.js
index 15b702a4e80cd6f9009c3c0dec9c490e57ca02bc..c9a91f05cb793b07324bb0b11a198d354161ebe8 100644
--- a/third_party/WebKit/Source/devtools/front_end/help/Help.js
+++ b/third_party/WebKit/Source/devtools/front_end/help/Help.js
@@ -58,17 +58,11 @@ Help.browserVersion = function() {
*/
Help._releaseNoteViewId = 'release-note';
-/** @typedef {!{src: string}} */
-Help.ReleaseNoteImage;
-
-/** @typedef {!{text: string, link: (string | undefined)}} */
-Help.ReleaseNoteHighlightContent;
-
-/** @typedef {!{contents: !Array<!Help.ReleaseNoteHighlightContent>, featured: (boolean | undefined)}} */
+/** @typedef {!{title: string, subtitle: string, link: string}} */
Help.ReleaseNoteHighlight;
/**
* @typedef {!{version: number, highlights: !Array<!Help.ReleaseNoteHighlight>,
- * link: string, image: !Help.ReleaseNoteImage}}
+ * link: string}}
*/
Help.ReleaseNote;

Powered by Google App Engine
This is Rietveld 408576698