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

Unified Diff: chrome/browser/resources/md_bookmarks/store.html

Issue 2731473002: MD Bookmarks: Implement basis for new data-binding system (Closed)
Patch Set: calamity@ review Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/md_bookmarks/store.html
diff --git a/chrome/browser/resources/md_bookmarks/store.html b/chrome/browser/resources/md_bookmarks/store.html
index 05c941ce9b1c7d936cf1bbf06c8fcf6bcc0ffbbb..2fdcb261c04c8ff3aeba8e3ab9ed7e47b83fab8c 100644
--- a/chrome/browser/resources/md_bookmarks/store.html
+++ b/chrome/browser/resources/md_bookmarks/store.html
@@ -1,10 +1,16 @@
+<!-- New-style store: -->
+<link rel="import" href="chrome://resources/html/cr.html">
+<link rel="import" href="chrome://bookmarks/reducers.html">
+<script src="chrome://bookmarks/bookmarks_store.js"></script>
+
+<!-- Old-style store: -->
+<!-- TODO(tsergeant): Remove this version of the store once it is unused. -->
<link rel="import" href="chrome://resources/html/polymer.html">
<link rel="import" href="chrome://bookmarks/router.html">
-<script src="chrome://bookmarks/store.js"></script>
-
<dom-module id="bookmarks-store">
<template>
<bookmarks-router id="router" search-term="[[searchTerm]]"
selected-id="[[selectedId]]"></bookmarks-router>
</template>
+ <script src="chrome://bookmarks/store.js"></script>
</dom-module>
« no previous file with comments | « chrome/browser/resources/md_bookmarks/reducers.js ('k') | chrome/browser/resources/md_bookmarks/store_client.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698