From 8a0f58fea022eb92a6d697b66a5bf815f86daa42 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Wed, 9 Apr 2014 18:51:00 +0000 Subject: [PATCH] Mac: Fix cefsimple shutdown problem when launching from Finder (issue #1203) git-svn-id: https://chromiumembedded.googlecode.com/svn/branches/1750@1651 5089003a-bbd8-11dd-ad1f-f1f9622dbc98 --- tests/cefsimple/simple_app.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/cefsimple/simple_app.cpp b/tests/cefsimple/simple_app.cpp index 768903abb..cb8357050 100644 --- a/tests/cefsimple/simple_app.cpp +++ b/tests/cefsimple/simple_app.cpp @@ -43,6 +43,6 @@ void SimpleApp::OnContextInitialized() { url = "http://www.google.com"; // Create the first browser window. - CefBrowserHost::CreateBrowserSync(window_info, handler.get(), url, - browser_settings, NULL); + CefBrowserHost::CreateBrowser(window_info, handler.get(), url, + browser_settings, NULL); }