An open API service indexing awesome lists of open source software.

https://github.com/devdavidkarlsson/cefextensionsample


https://github.com/devdavidkarlsson/cefextensionsample

Last synced: 11 months ago
JSON representation

Awesome Lists containing this project

README

          

Chromium Embedded Framework Simple Application
==============================================
A simple hello world application to get you started with CEF3.

The application shows how interfacing between web and native code is performed using chromium embedded framework (CEF).

The process is as follows:

- Define native methods.
- Register native method with V8 using CefRegisterExtension.
- Parse the extension calls in the native C++ code using CefV8Handlers.
- Pass the response back to the web code.

The pattern basically resambles a messaging pattern.

(Original code: https://github.com/acristoffers/CEFSimpleSample)