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

Unified Diff: content/renderer/renderer_main.cc

Issue 111613005: Start removing support for in-process NPAPI plugins. This was a debugging mode and was only support… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/render_thread_impl.cc ('k') | content/test/mock_render_process.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/renderer_main.cc
===================================================================
--- content/renderer/renderer_main.cc (revision 242534)
+++ content/renderer/renderer_main.cc (working copy)
@@ -162,11 +162,8 @@
// now; see http://crbug.com/306348 for info) we need to have a UI loop.
base::MessageLoopForUI main_message_loop;
#else
- // The main message loop of the renderer services doesn't have IO or UI tasks,
- // unless in-process-plugins is used.
- base::MessageLoop main_message_loop(RenderProcessImpl::InProcessPlugins()
- ? base::MessageLoop::TYPE_UI
- : base::MessageLoop::TYPE_DEFAULT);
+ // The main message loop of the renderer services doesn't have IO or UI tasks.
+ base::MessageLoop main_message_loop(base::MessageLoop::TYPE_DEFAULT);
Avi (use Gerrit) 2013/12/26 20:32:16 The default value for the MessageLoop constructor
jam 2013/12/26 20:52:31 Done.
#endif
main_message_loop.AddTaskObserver(&task_observer);
« no previous file with comments | « content/renderer/render_thread_impl.cc ('k') | content/test/mock_render_process.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698