Index: content/browser/renderer_host/render_process_host_impl.cc |
=================================================================== |
--- content/browser/renderer_host/render_process_host_impl.cc (revision 120208) |
+++ content/browser/renderer_host/render_process_host_impl.cc (working copy) |
@@ -315,7 +315,8 @@ |
base::PLATFORM_FILE_CREATE | base::PLATFORM_FILE_CREATE_ALWAYS | |
base::PLATFORM_FILE_WRITE); |
- CHECK(!content::ExitedMainMessageLoop()); |
+ extern bool g_exited_main_message_loop; |
jam
2012/02/02 21:43:36
nit: usually i see externs at the top of the file
Marshall
2012/02/02 22:02:10
Done.
|
+ CHECK(!g_exited_main_message_loop); |
RegisterHost(GetID(), this); |
g_all_hosts.Get().set_check_on_null_data(true); |
// Initialize |child_process_activity_time_| to a reasonable value. |