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

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: calamity@ review 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
« no previous file with comments | « no previous file | chrome/browser/resources/md_bookmarks/bookmarks_store.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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://resources/html/cr/ui/splitter.html"> 2 <link rel="import" href="chrome://resources/html/cr/ui/splitter.html">
3 <link rel="import" href="chrome://bookmarks/api_listener.html"> 3 <link rel="import" href="chrome://bookmarks/api_listener.html">
4 <link rel="import" href="chrome://bookmarks/list.html"> 4 <link rel="import" href="chrome://bookmarks/list.html">
5 <link rel="import" href="chrome://bookmarks/router.html">
5 <link rel="import" href="chrome://bookmarks/shared_vars.html"> 6 <link rel="import" href="chrome://bookmarks/shared_vars.html">
6 <link rel="import" href="chrome://bookmarks/sidebar.html"> 7 <link rel="import" href="chrome://bookmarks/sidebar.html">
7 <link rel="import" href="chrome://bookmarks/store.html"> 8 <link rel="import" href="chrome://bookmarks/store.html">
8 <link rel="import" href="chrome://bookmarks/toolbar.html"> 9 <link rel="import" href="chrome://bookmarks/toolbar.html">
9 <link rel="import" href="chrome://bookmarks/util.html"> 10 <link rel="import" href="chrome://bookmarks/util.html">
10 11
11 <dom-module id="bookmarks-app"> 12 <dom-module id="bookmarks-app">
12 <template> 13 <template>
13 <style> 14 <style>
14 :host { 15 :host {
(...skipping 28 matching lines...) Expand all
43 flex: 1; 44 flex: 1;
44 min-width: 550px; 45 min-width: 550px;
45 } 46 }
46 </style> 47 </style>
47 <bookmarks-toolbar sidebar-width="[[sidebarWidth_]]"></bookmarks-toolbar> 48 <bookmarks-toolbar sidebar-width="[[sidebarWidth_]]"></bookmarks-toolbar>
48 <div id="main-container"> 49 <div id="main-container">
49 <bookmarks-sidebar id="sidebar"></bookmarks-sidebar> 50 <bookmarks-sidebar id="sidebar"></bookmarks-sidebar>
50 <div id="splitter"></div> 51 <div id="splitter"></div>
51 <bookmarks-list></bookmarks-list> 52 <bookmarks-list></bookmarks-list>
52 </div> 53 </div>
54 <bookmarks-router></bookmarks-router>
53 </template> 55 </template>
54 <script src="chrome://bookmarks/app.js"></script> 56 <script src="chrome://bookmarks/app.js"></script>
55 </dom-module> 57 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/md_bookmarks/bookmarks_store.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698