// A task is a generic runnable thingy, usually used for running code on a // different thread or for scheduling future tasks off of the message loop. Task也是比较重要的一个类,先逐个分析头文件 #include "base/non_thread_safe.h" #include "base/revocable_store.…
转自:https://www.chromium.org/developers/how-tos/debugging-on-windows For Developers > How-Tos >  Debugging Chromium on Windows 目录 1 Before you start 1.1 Requirements 1.2 Optional 2 Multi-process issues 2.1 Single-process mode 2.2 Using Image File…
接触chromium已有一段时间,写点东西学习一下吧. 首先说一下用法,如何利用chromium封装好的thread类来开一个线程.在base里有一个封装该类的头文件thread.h,include它之后可以这样写一段代码(仅范例而已,具体用的时候要放在类里边儿的) //a sample to use base::thread of chromium //by zhouyoulie //2014.03 int Fun( int para1,int para2 ); //creat a threa…