https://github.com/devdavidkarlsson/cefextensionsample
https://github.com/devdavidkarlsson/cefextensionsample
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/devdavidkarlsson/cefextensionsample
- Owner: devdavidkarlsson
- License: other
- Created: 2015-02-13T09:35:18.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-02-17T12:19:56.000Z (over 11 years ago)
- Last Synced: 2025-02-12T17:31:07.695Z (over 1 year ago)
- Language: C++
- Size: 60.6 MB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)