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

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

Issue 2745993002: MD Bookmarks: Update URL router to work in new data binding system (Closed)
Patch Set: Change initialization, add integration test 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 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/api_listener.html"> 2 <link rel="import" href="chrome://bookmarks/api_listener.html">
3 <link rel="import" href="chrome://bookmarks/list.html"> 3 <link rel="import" href="chrome://bookmarks/list.html">
4 <link rel="import" href="chrome://bookmarks/router.html">
4 <link rel="import" href="chrome://bookmarks/shared_vars.html"> 5 <link rel="import" href="chrome://bookmarks/shared_vars.html">
5 <link rel="import" href="chrome://bookmarks/sidebar.html"> 6 <link rel="import" href="chrome://bookmarks/sidebar.html">
6 <link rel="import" href="chrome://bookmarks/store.html"> 7 <link rel="import" href="chrome://bookmarks/store.html">
7 <link rel="import" href="chrome://bookmarks/toolbar.html"> 8 <link rel="import" href="chrome://bookmarks/toolbar.html">
8 <link rel="import" href="chrome://bookmarks/util.html"> 9 <link rel="import" href="chrome://bookmarks/util.html">
9 10
10 <dom-module id="bookmarks-app"> 11 <dom-module id="bookmarks-app">
11 <template> 12 <template>
12 <style> 13 <style>
13 :host { 14 :host {
(...skipping 16 matching lines...) Expand all
30 31
31 bookmarks-list { 32 bookmarks-list {
32 flex: 1; 33 flex: 1;
33 } 34 }
34 </style> 35 </style>
35 <bookmarks-toolbar></bookmarks-toolbar> 36 <bookmarks-toolbar></bookmarks-toolbar>
36 <div id="main-container"> 37 <div id="main-container">
37 <bookmarks-sidebar></bookmarks-sidebar> 38 <bookmarks-sidebar></bookmarks-sidebar>
38 <bookmarks-list></bookmarks-list> 39 <bookmarks-list></bookmarks-list>
39 </div> 40 </div>
41 <bookmarks-router></bookmarks-router>
40 </template> 42 </template>
41 <script src="chrome://bookmarks/app.js"></script> 43 <script src="chrome://bookmarks/app.js"></script>
42 </dom-module> 44 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698