Index: chrome/browser/resources/settings/people_page/import_data_browser_proxy.js |
diff --git a/chrome/browser/resources/settings/people_page/import_data_browser_proxy.js b/chrome/browser/resources/settings/people_page/import_data_browser_proxy.js |
index 24c108ec339dca52a30964ea449631c0850590a3..10a13a4f65655c8ab0941952e6d37b4da48ca3f2 100644 |
--- a/chrome/browser/resources/settings/people_page/import_data_browser_proxy.js |
+++ b/chrome/browser/resources/settings/people_page/import_data_browser_proxy.js |
@@ -56,6 +56,11 @@ cr.define('settings', function() { |
* Prompts the user to choose a bookmarks file to import bookmarks from. |
*/ |
importFromBookmarksFile: function() {}, |
+ /** |
+ * Close the Dialog if it is Opened. |
+ */ |
+ closeDialog: function() {}, |
+ |
}; |
/** |
@@ -82,6 +87,11 @@ cr.define('settings', function() { |
importFromBookmarksFile: function() { |
chrome.send('importFromBookmarksFile'); |
}, |
+ |
+ /** @override */ |
+ closeDialog: function() { |
+ chrome.send('closeDialog'); |
+ }, |
}; |
return { |