
Visual Studio:子进程调试相关 2
从 Visual Studio Gallery 下载该工具 before vs2022 地址:微软插件 地址:aet_repo vs2022 地址:微软插件 地址:aet_repo 用途与介绍 子进程调试意味着当您正...
从 Visual Studio Gallery 下载该工具 before vs2022 地址:微软插件 地址:aet_repo vs2022 地址:微软插件 地址:aet_repo 用途与介绍 子进程调试意味着当您正...
关于sandbox相关 用途 进程隔离 CEF采多进程架构,主要包括浏览器进程和渲染进程 沙盒机制将渲染进程与浏览器进程隔离开来,使得即使渲染进程中存在恶意代码或漏洞,也不会直接影响浏览器进程及宿主系统 权限限制 沙...
类图 类Clock 接口类 virtual Time Now() const = 0; 类DefaultClock Clock的派生类 Time DefaultClock::Now() const { return ...
Views框架 由不同的UI空间组成不同的UI模块 比如标签栏,地址栏,书签栏等等 最后由BrowserView这个主要UI容器将不同的UI模块组织到一起 View 概述 Chromium 的 Views 框架中的基...
scoped_refptr AdoptRef template <typename T> scoped_refptr<T> AdoptRef(T* t); RefCounted及基类概要 cl...
file 操作类型 class BASE_EXPORT File { enum Flags { FLAG_OPEN = 1 << 0, // Opens a file, only if it exists...
hash Hash 计算内存缓冲区的哈希 不推荐这个,改用FastHash BASE_EXPORT uint32_t Hash(const void* data, size_t length); BASE_EXPOR...
sys_info 类 namespace base class SysInfo 函数 返回当前计算机上的逻辑处理器/内核数 static int NumberOfProcessors(); 返回当前机器上物理内存的字...
json_writer Write 写json文件。 static bool Write(const Value& node, std::string* json, size_t max_depth = in...
类图 类TimerBase //计时器是否在运行 bool IsRunning() const; //返回当前计时器的延时 TimeDelta GetCurrentDelay() const; virtual voi...