- cefclient: Linux: Introduce RootWindow concept and associated window/client object hierarchy (issue #1500).

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@2004 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt
2015-01-29 20:53:53 +00:00
parent 37464c2a4c
commit 89de4a5bb6
32 changed files with 1928 additions and 933 deletions

View File

@@ -66,7 +66,7 @@ int RunMain(HINSTANCE hInstance, int nCmdShow) {
message_loop.reset(new MainMessageLoopStd);
// Initialize CEF.
CefInitialize(main_args, settings, app.get(), sandbox_info);
context->Initialize(main_args, settings, app.get(), sandbox_info);
// Register scheme handlers.
test_runner::RegisterSchemeHandlers();
@@ -83,7 +83,7 @@ int RunMain(HINSTANCE hInstance, int nCmdShow) {
int result = message_loop->Run();
// Shut down CEF.
CefShutdown();
context->Shutdown();
// Release objects in reverse order of creation.
message_loop.reset();