Index: content/renderer/render_thread_impl.cc |
diff --git a/content/renderer/render_thread_impl.cc b/content/renderer/render_thread_impl.cc |
index 77f6b17246d15d033358530b58a34900d033c3d4..44f8abb2114f1c43935f5da83ffa4953e100f322 100644 |
--- a/content/renderer/render_thread_impl.cc |
+++ b/content/renderer/render_thread_impl.cc |
@@ -592,13 +592,7 @@ void RenderThreadImpl::EnsureWebKitInitialized() { |
WebKit::Platform::current()->compositorSupport(); |
const CommandLine& command_line = *CommandLine::ForCurrentProcess(); |
- // TODO(fsamuel): Guests don't currently support threaded compositing. |
- // This should go away with the new design of the browser plugin. |
- // The new design can be tracked at: http://crbug.com/134492. |
- bool is_guest = command_line.HasSwitch(switches::kGuestRenderer); |
- bool threaded = command_line.HasSwitch(switches::kEnableThreadedCompositing); |
- |
- bool enable = threaded && !is_guest; |
+ bool enable = command_line.HasSwitch(switches::kEnableThreadedCompositing); |
if (enable) { |
compositor_thread_.reset(new CompositorThread(this)); |
AddFilter(compositor_thread_->GetMessageFilter()); |