| 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..6cda2c8f0a5c13604fabb2448562cebee8c0664d 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 import lock dialog if it is opened.
|
| + */
|
| + closeImportLockDialog: function() {},
|
| };
|
|
|
| /**
|
| @@ -82,6 +87,11 @@ cr.define('settings', function() {
|
| importFromBookmarksFile: function() {
|
| chrome.send('importFromBookmarksFile');
|
| },
|
| +
|
| + /** @override */
|
| + closeImportLockDialog: function() {
|
| + chrome.send('closeImportLockDialog');
|
| + },
|
| };
|
|
|
| return {
|
|
|