Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(370)

Side by Side Diff: content/renderer/renderer_main.cc

Issue 583043005: Pending tasks in a message loop should be deleted before shutting down Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/base_switches.h" 5 #include "base/base_switches.h"
6 #include "base/command_line.h" 6 #include "base/command_line.h"
7 #include "base/debug/debugger.h" 7 #include "base/debug/debugger.h"
8 #include "base/debug/stack_trace.h" 8 #include "base/debug/stack_trace.h"
9 #include "base/debug/trace_event.h" 9 #include "base/debug/trace_event.h"
10 #include "base/i18n/rtl.h" 10 #include "base/i18n/rtl.h"
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 223
224 if (run_loop) { 224 if (run_loop) {
225 #if defined(OS_MACOSX) 225 #if defined(OS_MACOSX)
226 if (pool) 226 if (pool)
227 pool->Recycle(); 227 pool->Recycle();
228 #endif 228 #endif
229 TRACE_EVENT_BEGIN_ETW("RendererMain.START_MSG_LOOP", 0, 0); 229 TRACE_EVENT_BEGIN_ETW("RendererMain.START_MSG_LOOP", 0, 0);
230 base::MessageLoop::current()->Run(); 230 base::MessageLoop::current()->Run();
231 TRACE_EVENT_END_ETW("RendererMain.START_MSG_LOOP", 0, 0); 231 TRACE_EVENT_END_ETW("RendererMain.START_MSG_LOOP", 0, 0);
232 } 232 }
233
234 // Since the destructors of the pending tasks can touch Blink objects,
235 // we need to make sure that all pending tasks are deleted before
236 // shutting down Blink (Blink is shut down in the RenderProcessImpl's
237 // destructor).
238 main_message_loop.DeletePendingTasks();
jamesr 2014/09/22 14:38:04 since you're deleting *all* pending tasks and not
haraken 2014/09/22 15:54:18 I'm not familiar with a message loop, but what's a
233 } 239 }
234 platform.PlatformUninitialize(); 240 platform.PlatformUninitialize();
235 TRACE_EVENT_END_ETW("RendererMain", 0, ""); 241 TRACE_EVENT_END_ETW("RendererMain", 0, "");
236 return 0; 242 return 0;
237 } 243 }
238 244
239 } // namespace content 245 } // namespace content
OLDNEW
« base/message_loop/message_loop.h ('K') | « base/message_loop/message_loop.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698