CEF,Chromium Embedded Framework的缩写。CEF 的官网介绍的很简洁:A simple framework for embedding chromium browser windows in other applications。具体地说就是一个可以将浏览器功能(页面渲染,JS 执行)嵌入到其…
chromium Features 58-84
From https://chromestatus.com/features
chromium58 Features:41
‘allow-top-navigation-by-user-activation’ <iframe sandbox> keyword
Adds a new keyword named “allow-top-navigation-by-user-activation” for iframe sandbox, wh…
前言
本文介绍如何下载并编译chromium源码。相关前置条件可参考官方文档。
环境 :
Windows 11VS 2022
环境设置
打开cmd,设置代理
set http_proxyhttp://127.0.0.1:7890 & set https_proxyhttp://127.0.0.1:7890注意:使用cmd命令行…
CEF有几种线程,比如TID_UI、比如TID_RENDER,每种都有特定的含义,具体类别定义在cef_types.h中,摘录如下:
typedef enum {
// BROWSER PROCESS THREADS -- Only available in the browser process.///// The main thre…
在“使用CEF的JSON解析功能”中介绍了使用CefParseJson方法,与之对应的还有一个CefWriteJson方法,可以用来生成JSON串(或二进制),其函数原型如下:
// Generates a JSON string from the specified root |n…
chromium Features 109-119
From https://chromestatus.com/features
chromium109 Features:12
Auto range support for font descriptors inside font-face rule
Auto range support for variable fonts in ‘font-weight’, ‘font-style’ and ‘font-stretch’ descrip…