mac: Should restart renderer when reloading

Fixes #692.
This commit is contained in:
Cheng Zhao 2014-10-19 16:27:50 +08:00
Родитель 53b83eba8c
Коммит ab652b738c
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -135,7 +135,9 @@ static const CGFloat kAtomWindowCornerRadius = 4.0;
}
- (IBAction)reload:(id)sender {
shell_->GetWebContents()->GetController().ReloadIgnoringCache(false);
content::WebContents* web_contents = shell_->GetWebContents();
content::NavigationController::LoadURLParams params(web_contents->GetURL());
web_contents->GetController().LoadURLWithParams(params);
}
- (IBAction)showDevTools:(id)sender {