45 lines
1.3 KiB
C++
45 lines
1.3 KiB
C++
// Copyright (c) 2013 The Chromium Embedded Framework Authors. All rights
|
|
// reserved. Use of this source code is governed by a BSD-style license that
|
|
// can be found in the LICENSE file.
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#include "cefsimple/simple_app.h"
|
|
|
|
// Entry point function for all processes.
|
|
int main(int argc, char* argv[]) {
|
|
// Provide CEF with command-line arguments.
|
|
CefMainArgs main_args(argc, argv);
|
|
|
|
// SimpleApp implements application-level callbacks. It will create the first
|
|
// browser instance in OnContextInitialized() after CEF has initialized.
|
|
CefRefPtr<SimpleApp> app(new SimpleApp);
|
|
|
|
// CEF applications have multiple sub-processes (render, plugin, GPU, etc)
|
|
// that share the same executable. This function checks the command-line and,
|
|
// if this is a sub-process, executes the appropriate logic.
|
|
int exit_code = CefExecuteProcess(main_args, app.get(), NULL);
|
|
if (exit_code >= 0) {
|
|
// The sub-process has completed so return here.
|
|
return exit_code;
|
|
}
|
|
|
|
// Initialize GTK.
|
|
gtk_init(&argc, &argv);
|
|
|
|
// Specify CEF global settings here.
|
|
CefSettings settings;
|
|
|
|
// Initialize CEF for the browser process.
|
|
CefInitialize(main_args, settings, app.get(), NULL);
|
|
|
|
// Run the CEF message loop. This will block until CefQuitMessageLoop() is
|
|
// called.
|
|
CefRunMessageLoop();
|
|
|
|
// Shut down CEF.
|
|
CefShutdown();
|
|
|
|
return 0;
|
|
}
|