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

Unified Diff: chrome/browser/resources/md_bookmarks/types.js

Issue 2758703002: [WIP] MD Bookmarks Drag and Drop. (Closed)
Patch Set: 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
« no previous file with comments | « chrome/browser/resources/md_bookmarks/sidebar.html ('k') | chrome/browser/resources/md_bookmarks/util.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/md_bookmarks/types.js
diff --git a/chrome/browser/resources/md_bookmarks/types.js b/chrome/browser/resources/md_bookmarks/types.js
index a3b463a36fc4fdbafbd1eb598d7369ec19fee772..08bad53af6ed1254d732255a7259ff831a61792f 100644
--- a/chrome/browser/resources/md_bookmarks/types.js
+++ b/chrome/browser/resources/md_bookmarks/types.js
@@ -8,7 +8,7 @@
/**
* A normalized version of chrome.bookmarks.BookmarkTreeNode.
- * @typedef{{
+ * @typedef {{
* id: string,
* parentId: (string|undefined),
* url: (string|undefined),
@@ -22,12 +22,12 @@
var BookmarkNode;
/**
- * @typedef{!Object<string, BookmarkNode>}
+ * @typedef {!Object<string, BookmarkNode>}
*/
var NodeList;
/**
- * @typedef{{
+ * @typedef {{
* items: !Object<string, boolean>,
* anchor: ?string,
* }}
@@ -35,7 +35,7 @@ var NodeList;
var SelectionState;
/**
- * @typedef{{
+ * @typedef {{
* term: string,
* inProgress: boolean,
* results: !Array<string>,
@@ -47,7 +47,7 @@ var SearchState;
var ClosedFolderState;
/**
- * @typedef{{
+ * @typedef {{
* nodes: NodeList,
* selectedFolder: ?string,
* closedFolders: ClosedFolderState,
« no previous file with comments | « chrome/browser/resources/md_bookmarks/sidebar.html ('k') | chrome/browser/resources/md_bookmarks/util.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698