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

Unified Diff: chrome/browser/resources/md_bookmarks/toolbar.js

Issue 2715523003: [MD Bookmarks] Add import/export bookmarks HTML features (Closed)
Patch Set: Update closure deps 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
« no previous file with comments | « chrome/browser/resources/md_bookmarks/store.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/md_bookmarks/toolbar.js
diff --git a/chrome/browser/resources/md_bookmarks/toolbar.js b/chrome/browser/resources/md_bookmarks/toolbar.js
index 53f002b1be97266b99a0c2b896313ee45b403922..5b80c74fbef76ca922d66d67cd7c0c724778a044 100644
--- a/chrome/browser/resources/md_bookmarks/toolbar.js
+++ b/chrome/browser/resources/md_bookmarks/toolbar.js
@@ -43,12 +43,14 @@ Polymer({
},
/** @private */
- onAddImportTap_: function() {
+ onImportTap_: function() {
+ chrome.bookmarks.import();
this.closeDropdownMenu_();
},
/** @private */
- onAddExportTap_: function() {
+ onExportTap_: function() {
+ chrome.bookmarks.export();
this.closeDropdownMenu_();
},
« no previous file with comments | « chrome/browser/resources/md_bookmarks/store.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698