http://blog.youkuaiyun.com/chromium_webkit/article/details/8666005
上一篇介绍到了Shell_browser_main.cc的中调用的BrowserMainRunnerImpl的Initialize和Run函数,现在来介绍具体的过程和特点;在BrowserMainRunnerImpl的Initialize中会看到如下代码:
- main_loop_.reset(new BrowserMainLoop(parameters));
- main_loop_->Init();
- main_loop_->EarlyInitialization();
- // Must happen before we try to use a message loop or display any UI.
- main_loop_->InitializeToolkit();
- main_loop_->MainMessageLoopStart();
BrowserMainLoop的Init在上一篇我们介绍过了,下面来看看EarlyInitialization:
- if (parts_.get())
- parts_->PreEarlyInitialization();
- if (parts_.get())
- parts_->PostEarlyInitialization();
parts_是在Init中初始化的,通过上一篇的分析我们得知是由ShellContentBrowserClient的CreateBrowserMainParts函数得到结果,其代码如下:
- shell_browser_main_parts_ = new ShellBrowserMainParts(parameters);
- return shell_browser_main_parts_;
从代码中我们可以知道,ShellBrowserMainParts的这连个函数在windows平台下,什么都没做;
看看BrowserMainLoop的InitializeToolkit函数,该函数主要是平台界面系统的初始化工作;
BrowserMainLoop的MainMessageLoopStart函数:初始化main_message_loop_和主线程CrBrowserMain
接下来BrowserMainRunnerImpl的Initialize函数调用BrowserMainLoop的CreateThreads函数:初始化DB thread、IO thread、File thread、Cache thread等
call stack:
- > content.dll!content::WebContentsImpl::GetNativeView() 行 1113 + 0x20 字节 C++
- content_shell.exe!content::Shell::GetContentView() 行 201 + 0x20 字节 C++
- content_shell.exe!content::Shell::PlatformResizeSubViews() 行 168 + 0x1b 字节 C++
- content_shell.exe!content::Shell::CreateShell(content::WebContents * web_contents) 行 93 C++
- content_shell.exe!content::Shell::CreateNewWindow(content::BrowserContext * browser_context, const GURL & url, content::SiteInstance * site_instance, int routing_id, content::WebContents * base_web_contents) 行 134 + 0x9 字节 C++
- content_shell.exe!content::ShellBrowserMainParts::PreMainMessageLoopRun() 行 137 + 0x46 字节 C++
- content.dll!content::BrowserMainLoop::CreateThreads() 行 469 + 0x26 字节 C++
- content.dll!content::BrowserMainRunnerImpl::Initialize(const content::MainFunctionParams & parameters) 行 106 C++
- content_shell.exe!ShellBrowserMain(const content::MainFunctionParams & parameters) 行 111 + 0x2a 字节 C++
- content_shell.exe!content::ShellMainDelegate::RunProcess(const std::basic_string<char,std::char_traits<char>,std::allocator<char> > & process_type, const content::MainFunctionParams & main_function_params) 行 134 + 0x9 字节 C++
- content.dll!content::RunNamedProcessTypeMain(const std::basic_string<char,std::char_traits<char>,std::allocator<char> > & process_type, const content::MainFunctionParams & main_function_params, content::ContentMainDelegate * delegate) 行 438 + 0x17 字节 C++
- content.dll!content::ContentMainRunnerImpl::Run() 行 754 + 0x14 字节 C++
- content.dll!content::ContentMain(HINSTANCE__ * instance, sandbox::SandboxInterfaceInfo * sandbox_info, content::ContentMainDelegate * delegate) 行 35 + 0x1a 字节 C++
- content_shell.exe!wWinMain(HINSTANCE__ * instance, HINSTANCE__ * __formal, HINSTANCE__ * __formal, HINSTANCE__ * __formal) 行 24 + 0x14 字节 C++
- content_shell.exe!__tmainCRTStartup() 行 547 + 0x2c 字节 C
- content_shell.exe!wWinMainCRTStartup() 行 371 C
到这里就创建了浏览器的主窗口,进入了主要的事件循环了。