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

Side by Side Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 12547016: Enable browser plugin compositing by default, but add a flag to disable it. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 9 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 // Represents the browser side of the browser <--> renderer communication 5 // Represents the browser side of the browser <--> renderer communication
6 // channel. There will be one RenderProcessHost per renderer process. 6 // channel. There will be one RenderProcessHost per renderer process.
7 7
8 #include "content/browser/renderer_host/render_process_host_impl.h" 8 #include "content/browser/renderer_host/render_process_host_impl.h"
9 9
10 #include <algorithm> 10 #include <algorithm>
(...skipping 746 matching lines...) Expand 10 before | Expand all | Expand 10 after
757 #if defined(OS_ANDROID) 757 #if defined(OS_ANDROID)
758 switches::kEnableWebAudio, 758 switches::kEnableWebAudio,
759 switches::kEnableWebRTC, 759 switches::kEnableWebRTC,
760 #else 760 #else
761 switches::kDisableWebAudio, 761 switches::kDisableWebAudio,
762 #endif 762 #endif
763 switches::kEnableWebAudioInput, 763 switches::kEnableWebAudioInput,
764 switches::kDisableWebSockets, 764 switches::kDisableWebSockets,
765 switches::kDomAutomationController, 765 switches::kDomAutomationController,
766 switches::kEnableAccessibilityLogging, 766 switches::kEnableAccessibilityLogging,
767 switches::kEnableBrowserPluginCompositing,
768 switches::kEnableBrowserPluginForAllViewTypes, 767 switches::kEnableBrowserPluginForAllViewTypes,
769 switches::kEnableBrowserPluginPointerLock, 768 switches::kEnableBrowserPluginPointerLock,
770 switches::kEnableDCHECK, 769 switches::kEnableDCHECK,
771 switches::kEnableDelegatedRenderer, 770 switches::kEnableDelegatedRenderer,
772 switches::kDisableEncryptedMedia, 771 switches::kDisableEncryptedMedia,
773 switches::kEnableExperimentalWebKitFeatures, 772 switches::kEnableExperimentalWebKitFeatures,
774 switches::kEnableFixedLayout, 773 switches::kEnableFixedLayout,
775 switches::kEnableDeferredImageDecoding, 774 switches::kEnableDeferredImageDecoding,
776 switches::kEnableGPUServiceLogging, 775 switches::kEnableGPUServiceLogging,
777 switches::kEnableGPUClientLogging, 776 switches::kEnableGPUClientLogging,
(...skipping 860 matching lines...) Expand 10 before | Expand all | Expand 10 after
1638 TRACE_EVENT0("renderer_host", 1637 TRACE_EVENT0("renderer_host",
1639 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); 1638 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost");
1640 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; 1639 AcceleratedSurfaceMsg_BufferPresented_Params ack_params;
1641 ack_params.sync_point = 0; 1640 ack_params.sync_point = 0;
1642 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, 1641 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id,
1643 gpu_process_host_id, 1642 gpu_process_host_id,
1644 ack_params); 1643 ack_params);
1645 } 1644 }
1646 1645
1647 } // namespace content 1646 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/renderer_host/gpu_message_filter.cc ('k') | content/browser/renderer_host/render_widget_host_view_guest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698