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

Issue 2603303002: [MD Bookmarks] Add UI for Material Bookmarks. (Closed)

Created:
3 years, 11 months ago by jiaxi
Modified:
3 years, 11 months ago
Reviewers:
tsergeant, calamity
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

[MD Bookmarks] Add UI for Material Bookmarks. This CL adds the basic UI for the material design bookmark manager. - list.html is the list of bookmarks. - sidebar.html contains the folder tree. BUG=658980 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:closure_compilation Committed: https://crrev.com/ab33b38dd1014114876adbcd70bcea76d5b1e614 Cr-Commit-Position: refs/heads/master@{#441325}

Patch Set 1 #

Total comments: 34

Patch Set 2 : renaming and reverting #

Total comments: 4

Patch Set 3 : fix #

Total comments: 2

Patch Set 4 : change TODO position #

Unified diffs Side-by-side diffs Delta from patch set Stats (+547 lines, -0 lines) Patch
M chrome/browser/browser_resources.grd View 1 chunk +9 lines, -0 lines 0 comments Download
M chrome/browser/resources/md_bookmarks/app.html View 1 1 chunk +2 lines, -0 lines 0 comments Download
A chrome/browser/resources/md_bookmarks/folder_node.html View 1 1 chunk +86 lines, -0 lines 0 comments Download
A chrome/browser/resources/md_bookmarks/folder_node.js View 1 2 3 1 chunk +63 lines, -0 lines 0 comments Download
A chrome/browser/resources/md_bookmarks/icons.html View 1 2 3 1 chunk +18 lines, -0 lines 0 comments Download
A chrome/browser/resources/md_bookmarks/item.html View 1 1 chunk +68 lines, -0 lines 0 comments Download
A chrome/browser/resources/md_bookmarks/item.js View 1 1 chunk +41 lines, -0 lines 0 comments Download
A chrome/browser/resources/md_bookmarks/list.html View 1 chunk +43 lines, -0 lines 0 comments Download
A chrome/browser/resources/md_bookmarks/list.js View 1 2 1 chunk +49 lines, -0 lines 0 comments Download
A chrome/browser/resources/md_bookmarks/sidebar.html View 1 chunk +27 lines, -0 lines 0 comments Download
A chrome/browser/resources/md_bookmarks/sidebar.js View 1 1 chunk +11 lines, -0 lines 0 comments Download
M chrome/browser/ui/webui/md_bookmarks/md_bookmarks_ui.cc View 1 chunk +11 lines, -0 lines 0 comments Download
A chrome/test/data/webui/md_bookmarks/item_test.js View 1 2 1 chunk +32 lines, -0 lines 0 comments Download
M chrome/test/data/webui/md_bookmarks/md_bookmarks_browsertest.js View 1 1 chunk +28 lines, -0 lines 0 comments Download
A chrome/test/data/webui/md_bookmarks/sidebar_test.js View 1 chunk +59 lines, -0 lines 0 comments Download

Dependent Patchsets:

Messages

Total messages: 25 (12 generated)
jiaxi
3 years, 11 months ago (2017-01-03 02:33:22 UTC) #3
tsergeant
🙆🙆🙆 https://codereview.chromium.org/2603303002/diff/1/chrome/browser/resources/md_bookmarks/app.html File chrome/browser/resources/md_bookmarks/app.html (right): https://codereview.chromium.org/2603303002/diff/1/chrome/browser/resources/md_bookmarks/app.html#newcode3 chrome/browser/resources/md_bookmarks/app.html:3: <link rel="import" href="chrome://bookmarks/sidebar.html"> Sort these: Sidebar comes after ...
3 years, 11 months ago (2017-01-03 23:31:17 UTC) #4
calamity
https://codereview.chromium.org/2603303002/diff/1/chrome/browser/resources/md_bookmarks/folder_node.js File chrome/browser/resources/md_bookmarks/folder_node.js (right): https://codereview.chromium.org/2603303002/diff/1/chrome/browser/resources/md_bookmarks/folder_node.js#newcode26 chrome/browser/resources/md_bookmarks/folder_node.js:26: return this.item.isOpen ? 'cr:arrow-drop-up' : 'cr:arrow-drop-down'; On 2017/01/03 23:31:17, ...
3 years, 11 months ago (2017-01-04 00:43:00 UTC) #5
jiaxi
https://codereview.chromium.org/2603303002/diff/1/chrome/browser/resources/md_bookmarks/app.html File chrome/browser/resources/md_bookmarks/app.html (right): https://codereview.chromium.org/2603303002/diff/1/chrome/browser/resources/md_bookmarks/app.html#newcode3 chrome/browser/resources/md_bookmarks/app.html:3: <link rel="import" href="chrome://bookmarks/sidebar.html"> On 2017/01/03 23:31:17, tsergeant wrote: > ...
3 years, 11 months ago (2017-01-04 02:50:16 UTC) #7
tsergeant
https://codereview.chromium.org/2603303002/diff/40001/chrome/browser/resources/md_bookmarks/list.js File chrome/browser/resources/md_bookmarks/list.js (right): https://codereview.chromium.org/2603303002/diff/40001/chrome/browser/resources/md_bookmarks/list.js#newcode6 chrome/browser/resources/md_bookmarks/list.js:6: is: 'bookmarks-list', Blank line after this. https://codereview.chromium.org/2603303002/diff/40001/chrome/test/data/webui/md_bookmarks/item_test.js File chrome/test/data/webui/md_bookmarks/item_test.js ...
3 years, 11 months ago (2017-01-04 03:44:12 UTC) #8
jiaxi
https://codereview.chromium.org/2603303002/diff/40001/chrome/browser/resources/md_bookmarks/list.js File chrome/browser/resources/md_bookmarks/list.js (right): https://codereview.chromium.org/2603303002/diff/40001/chrome/browser/resources/md_bookmarks/list.js#newcode6 chrome/browser/resources/md_bookmarks/list.js:6: is: 'bookmarks-list', On 2017/01/04 03:44:12, tsergeant wrote: > Blank ...
3 years, 11 months ago (2017-01-04 04:12:34 UTC) #9
tsergeant
lgtm
3 years, 11 months ago (2017-01-04 04:21:29 UTC) #11
calamity
https://codereview.chromium.org/2603303002/diff/60001/chrome/browser/resources/md_bookmarks/folder_node.js File chrome/browser/resources/md_bookmarks/folder_node.js (right): https://codereview.chromium.org/2603303002/diff/60001/chrome/browser/resources/md_bookmarks/folder_node.js#newcode33 chrome/browser/resources/md_bookmarks/folder_node.js:33: //TODO(jiaxi): Move these icons to shared file. // TODO ...
3 years, 11 months ago (2017-01-04 04:33:07 UTC) #13
jiaxi
https://codereview.chromium.org/2603303002/diff/60001/chrome/browser/resources/md_bookmarks/folder_node.js File chrome/browser/resources/md_bookmarks/folder_node.js (right): https://codereview.chromium.org/2603303002/diff/60001/chrome/browser/resources/md_bookmarks/folder_node.js#newcode33 chrome/browser/resources/md_bookmarks/folder_node.js:33: //TODO(jiaxi): Move these icons to shared file. On 2017/01/04 ...
3 years, 11 months ago (2017-01-04 04:41:31 UTC) #15
calamity
lgtm
3 years, 11 months ago (2017-01-04 05:01:20 UTC) #16
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2603303002/100001
3 years, 11 months ago (2017-01-04 05:01:45 UTC) #19
commit-bot: I haz the power
Committed patchset #4 (id:100001)
3 years, 11 months ago (2017-01-04 05:52:25 UTC) #22
commit-bot: I haz the power
3 years, 11 months ago (2017-01-04 05:54:41 UTC) #24
Message was sent while issue was closed.
Patchset 4 (id:??) landed as
https://crrev.com/ab33b38dd1014114876adbcd70bcea76d5b1e614
Cr-Commit-Position: refs/heads/master@{#441325}

Powered by Google App Engine
This is Rietveld 408576698