Merge pull request #2607 from atom/fix-quit

win: Delay quitting until next tick of message loop
This commit is contained in:
Cheng Zhao 2015-08-27 11:56:58 +08:00
Родитель 9cdefb6069 ab859067aa
Коммит 04d8f3218f
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -45,7 +45,8 @@ void Browser::Shutdown() {
FOR_EACH_OBSERVER(BrowserObserver, observers_, OnQuit());
is_quiting_ = true;
base::MessageLoop::current()->Quit();
base::MessageLoop::current()->PostTask(
FROM_HERE, base::MessageLoop::QuitWhenIdleClosure());
}
std::string Browser::GetVersion() const {