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

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

Issue 13890012: Integrate VDA with WebRTC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Create new VDA thread, copy gpu_factories, and add DestructionObserver Created 7 years, 6 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.
Ami GONE FROM CHROMIUM 2013/06/11 23:48:05 Can the CLs this depends on land now (in webrtc &
wuchengli 2013/06/13 10:28:07 Not yet. Must I submit them first? Can I separate
Ami GONE FROM CHROMIUM 2013/06/13 20:10:03 I think it's up to you. My question above was most
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>
11 #include <limits> 11 #include <limits>
(...skipping 856 matching lines...) Expand 10 before | Expand all | Expand 10 after
868 switches::kEnableMemoryBenchmarking, 868 switches::kEnableMemoryBenchmarking,
869 switches::kEnableSkiaBenchmarking, 869 switches::kEnableSkiaBenchmarking,
870 switches::kEnableLogging, 870 switches::kEnableLogging,
871 switches::kEnableSpeechSynthesis, 871 switches::kEnableSpeechSynthesis,
872 switches::kEnableTouchDragDrop, 872 switches::kEnableTouchDragDrop,
873 switches::kEnableTouchEditing, 873 switches::kEnableTouchEditing,
874 switches::kEnableVsyncNotification, 874 switches::kEnableVsyncNotification,
875 switches::kEnableWebPInAcceptHeader, 875 switches::kEnableWebPInAcceptHeader,
876 #if defined(ENABLE_WEBRTC) 876 #if defined(ENABLE_WEBRTC)
877 switches::kEnableWebRtcAecRecordings, 877 switches::kEnableWebRtcAecRecordings,
878 switches::kEnableWebRTCHWDecoding,
878 #endif 879 #endif
879 switches::kDisableWebKitMediaSource, 880 switches::kDisableWebKitMediaSource,
880 switches::kEnableOverscrollNotifications, 881 switches::kEnableOverscrollNotifications,
881 switches::kEnableStrictSiteIsolation, 882 switches::kEnableStrictSiteIsolation,
882 switches::kDisableFullScreen, 883 switches::kDisableFullScreen,
883 switches::kEnableNewDialogStyle, 884 switches::kEnableNewDialogStyle,
884 #if defined(ENABLE_PLUGINS) 885 #if defined(ENABLE_PLUGINS)
885 switches::kEnablePepperTesting, 886 switches::kEnablePepperTesting,
886 switches::kDisablePepper3d, 887 switches::kDisablePepper3d,
887 #endif 888 #endif
(...skipping 879 matching lines...) Expand 10 before | Expand all | Expand 10 after
1767 TRACE_EVENT0("renderer_host", 1768 TRACE_EVENT0("renderer_host",
1768 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); 1769 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost");
1769 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; 1770 AcceleratedSurfaceMsg_BufferPresented_Params ack_params;
1770 ack_params.sync_point = 0; 1771 ack_params.sync_point = 0;
1771 RenderWidgetHostImpl::AcknowledgeBufferPresent(params.route_id, 1772 RenderWidgetHostImpl::AcknowledgeBufferPresent(params.route_id,
1772 params.gpu_process_host_id, 1773 params.gpu_process_host_id,
1773 ack_params); 1774 ack_params);
1774 } 1775 }
1775 1776
1776 } // namespace content 1777 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698