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

Side by Side Diff: chrome/browser/resources/md_bookmarks/app.html

Issue 2637023002: [MD Bookmarks] Add routing. (Closed)
Patch Set: First patch fix Created 3 years, 11 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 unified diff | Download patch
OLDNEW
1 <link rel="import" href="chrome://resources/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://bookmarks/list.html"> 2 <link rel="import" href="chrome://bookmarks/list.html">
3 <link rel="import" href="chrome://bookmarks/shared_vars.html"> 3 <link rel="import" href="chrome://bookmarks/shared_vars.html">
4 <link rel="import" href="chrome://bookmarks/sidebar.html"> 4 <link rel="import" href="chrome://bookmarks/sidebar.html">
5 <link rel="import" href="chrome://bookmarks/store.html"> 5 <link rel="import" href="chrome://bookmarks/store.html">
6 <link rel="import" href="chrome://bookmarks/toolbar.html"> 6 <link rel="import" href="chrome://bookmarks/toolbar.html">
7 7
8 <dom-module id="bookmarks-app"> 8 <dom-module id="bookmarks-app">
9 <template> 9 <template>
10 <style> 10 <style>
(...skipping 21 matching lines...) Expand all
32 </style> 32 </style>
33 <bookmarks-toolbar search-term="[[searchTerm]]"></bookmarks-toolbar> 33 <bookmarks-toolbar search-term="[[searchTerm]]"></bookmarks-toolbar>
34 <div id="main-container"> 34 <div id="main-container">
35 <bookmarks-sidebar root-folders="[[rootNode.children]]"> 35 <bookmarks-sidebar root-folders="[[rootNode.children]]">
36 </bookmarks-sidebar> 36 </bookmarks-sidebar>
37 <bookmarks-list displayed-list="[[displayedList]]"></bookmarks-list> 37 <bookmarks-list displayed-list="[[displayedList]]"></bookmarks-list>
38 </div> 38 </div>
39 <bookmarks-store selected-id="{{selectedId}}" 39 <bookmarks-store selected-id="{{selectedId}}"
40 root-node="{{rootNode}}" 40 root-node="{{rootNode}}"
41 search-term="{{searchTerm}}" 41 search-term="{{searchTerm}}"
42 displayed-list="{{displayedList}}"> 42 displayed-list="{{displayedList}}"
43 selected-id="{{selectedId}}">
calamity 2017/01/18 03:37:21 Remove?
angelayang 2017/01/18 06:34:02 Done.
43 </bookmarks-store> 44 </bookmarks-store>
44 </template> 45 </template>
45 <script src="chrome://bookmarks/app.js"></script> 46 <script src="chrome://bookmarks/app.js"></script>
46 </dom-module> 47 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698