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

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

Issue 2834493006: MD Bookmarks: Pull context menu into separate element (Closed)
Patch Set: Switch back to using a Command enum Created 3 years, 8 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://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/command_manager.html">
4 <link rel="import" href="chrome://bookmarks/constants.html"> 5 <link rel="import" href="chrome://bookmarks/constants.html">
5 <link rel="import" href="chrome://bookmarks/dnd_manager.html"> 6 <link rel="import" href="chrome://bookmarks/dnd_manager.html">
6 <link rel="import" href="chrome://bookmarks/list.html"> 7 <link rel="import" href="chrome://bookmarks/list.html">
7 <link rel="import" href="chrome://bookmarks/router.html"> 8 <link rel="import" href="chrome://bookmarks/router.html">
8 <link rel="import" href="chrome://bookmarks/shared_vars.html"> 9 <link rel="import" href="chrome://bookmarks/shared_vars.html">
9 <link rel="import" href="chrome://bookmarks/sidebar.html"> 10 <link rel="import" href="chrome://bookmarks/sidebar.html">
10 <link rel="import" href="chrome://bookmarks/store.html"> 11 <link rel="import" href="chrome://bookmarks/store.html">
11 <link rel="import" href="chrome://bookmarks/toolbar.html"> 12 <link rel="import" href="chrome://bookmarks/toolbar.html">
12 <link rel="import" href="chrome://bookmarks/util.html"> 13 <link rel="import" href="chrome://bookmarks/util.html">
13 14
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 min-width: 550px; 48 min-width: 550px;
48 } 49 }
49 </style> 50 </style>
50 <bookmarks-toolbar sidebar-width="[[sidebarWidth_]]"></bookmarks-toolbar> 51 <bookmarks-toolbar sidebar-width="[[sidebarWidth_]]"></bookmarks-toolbar>
51 <div id="main-container"> 52 <div id="main-container">
52 <bookmarks-sidebar id="sidebar"></bookmarks-sidebar> 53 <bookmarks-sidebar id="sidebar"></bookmarks-sidebar>
53 <div id="splitter"></div> 54 <div id="splitter"></div>
54 <bookmarks-list></bookmarks-list> 55 <bookmarks-list></bookmarks-list>
55 </div> 56 </div>
56 <bookmarks-router></bookmarks-router> 57 <bookmarks-router></bookmarks-router>
58 <bookmarks-command-manager></bookmarks-command-manager>
57 </template> 59 </template>
58 <script src="chrome://bookmarks/app.js"></script> 60 <script src="chrome://bookmarks/app.js"></script>
59 </dom-module> 61 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698