| Index: chrome/browser/extensions/extension_bookmarks_module.cc
|
| ===================================================================
|
| --- chrome/browser/extensions/extension_bookmarks_module.cc (revision 79409)
|
| +++ chrome/browser/extensions/extension_bookmarks_module.cc (working copy)
|
| @@ -800,7 +800,12 @@
|
|
|
| BookmarksIOFunction::BookmarksIOFunction() {}
|
|
|
| -BookmarksIOFunction::~BookmarksIOFunction() {}
|
| +BookmarksIOFunction::~BookmarksIOFunction() {
|
| + // There may be pending file dialogs, we need to tell them that we've gone
|
| + // away so they don't try and call back to us.
|
| + if (select_file_dialog_.get())
|
| + select_file_dialog_->ListenerDestroyed();
|
| +}
|
|
|
| void BookmarksIOFunction::SelectFile(SelectFileDialog::Type type) {
|
| // Balanced in one of the three callbacks of SelectFileDialog:
|
|
|