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

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: Created 7 years, 8 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
« no previous file with comments | « no previous file | content/content_renderer.gypi » ('j') | content/content_renderer.gypi » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/04/26 00:42:05 Please update the CL description to point to any d
wuchengli 2013/04/26 11:49:14 I added the WebRTC CL, though the link may need to
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
Ami GONE FROM CHROMIUM 2013/04/26 00:42:05 FYI local preview doesn't use the codec (it simply
wuchengli 2013/04/26 11:49:14 I pasted the log at https://p.prom.corp.google.com
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>
12 #include <vector> 12 #include <vector>
(...skipping 809 matching lines...) Expand 10 before | Expand all | Expand 10 after
822 switches::kEnableBrowserPluginForAllViewTypes, 822 switches::kEnableBrowserPluginForAllViewTypes,
823 switches::kEnableDCHECK, 823 switches::kEnableDCHECK,
824 switches::kEnableDelegatedRenderer, 824 switches::kEnableDelegatedRenderer,
825 switches::kDisableEncryptedMedia, 825 switches::kDisableEncryptedMedia,
826 switches::kEnableExperimentalWebKitFeatures, 826 switches::kEnableExperimentalWebKitFeatures,
827 switches::kEnableFixedLayout, 827 switches::kEnableFixedLayout,
828 switches::kEnableDeferredImageDecoding, 828 switches::kEnableDeferredImageDecoding,
829 switches::kEnableGPUServiceLogging, 829 switches::kEnableGPUServiceLogging,
830 switches::kEnableGPUClientLogging, 830 switches::kEnableGPUClientLogging,
831 switches::kEnableGpuClientTracing, 831 switches::kEnableGpuClientTracing,
832 switches::kEnableWebRTCHWDecoding,
Ami GONE FROM CHROMIUM 2013/04/26 00:42:05 This is a strange place to drop this particular fl
wuchengli 2013/04/26 11:49:14 I moved it after switches::kEnableVsyncNotificatio
832 switches::kEnableGpuBenchmarking, 833 switches::kEnableGpuBenchmarking,
833 switches::kEnableMemoryBenchmarking, 834 switches::kEnableMemoryBenchmarking,
834 switches::kEnableLogging, 835 switches::kEnableLogging,
835 switches::kEnableVsyncNotification, 836 switches::kEnableVsyncNotification,
836 switches::kDisableMediaSource, 837 switches::kDisableMediaSource,
837 switches::kDisableRendererSideMixing, 838 switches::kDisableRendererSideMixing,
838 switches::kEnableStrictSiteIsolation, 839 switches::kEnableStrictSiteIsolation,
839 switches::kDisableFullScreen, 840 switches::kDisableFullScreen,
840 switches::kEnableNewDialogStyle, 841 switches::kEnableNewDialogStyle,
841 #if defined(ENABLE_PLUGINS) 842 #if defined(ENABLE_PLUGINS)
(...skipping 879 matching lines...) Expand 10 before | Expand all | Expand 10 after
1721 TRACE_EVENT0("renderer_host", 1722 TRACE_EVENT0("renderer_host",
1722 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); 1723 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost");
1723 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; 1724 AcceleratedSurfaceMsg_BufferPresented_Params ack_params;
1724 ack_params.sync_point = 0; 1725 ack_params.sync_point = 0;
1725 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, 1726 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id,
1726 gpu_process_host_id, 1727 gpu_process_host_id,
1727 ack_params); 1728 ack_params);
1728 } 1729 }
1729 1730
1730 } // namespace content 1731 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/content_renderer.gypi » ('j') | content/content_renderer.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698