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

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

Issue 12320078: Delete old RTCVideoDecoder code path. (Closed) Base URL: https://chromium.googlesource.com/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 762 matching lines...) Expand 10 before | Expand all | Expand 10 after
773 switches::kEnableExperimentalWebKitFeatures, 773 switches::kEnableExperimentalWebKitFeatures,
774 switches::kEnableFixedLayout, 774 switches::kEnableFixedLayout,
775 switches::kEnableDeferredImageDecoding, 775 switches::kEnableDeferredImageDecoding,
776 switches::kEnableGPUServiceLogging, 776 switches::kEnableGPUServiceLogging,
777 switches::kEnableGPUClientLogging, 777 switches::kEnableGPUClientLogging,
778 switches::kEnableGpuClientTracing, 778 switches::kEnableGpuClientTracing,
779 switches::kEnableGpuBenchmarking, 779 switches::kEnableGpuBenchmarking,
780 switches::kEnableMemoryBenchmarking, 780 switches::kEnableMemoryBenchmarking,
781 switches::kEnableLogging, 781 switches::kEnableLogging,
782 switches::kDisableMediaSource, 782 switches::kDisableMediaSource,
783 switches::kDisableWebMediaPlayerMS,
784 switches::kDisableRendererSideMixing, 783 switches::kDisableRendererSideMixing,
785 switches::kEnableStrictSiteIsolation, 784 switches::kEnableStrictSiteIsolation,
786 switches::kDisableFullScreen, 785 switches::kDisableFullScreen,
787 switches::kEnableNewDialogStyle, 786 switches::kEnableNewDialogStyle,
788 #if defined(ENABLE_PLUGINS) 787 #if defined(ENABLE_PLUGINS)
789 switches::kEnablePepperTesting, 788 switches::kEnablePepperTesting,
790 #endif 789 #endif
791 switches::kEnablePreparsedJsCaching, 790 switches::kEnablePreparsedJsCaching,
792 switches::kEnablePruneGpuCommandBuffers, 791 switches::kEnablePruneGpuCommandBuffers,
793 switches::kEnablePinch, 792 switches::kEnablePinch,
(...skipping 833 matching lines...) Expand 10 before | Expand all | Expand 10 after
1627 TRACE_EVENT0("renderer_host", 1626 TRACE_EVENT0("renderer_host",
1628 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); 1627 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost");
1629 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; 1628 AcceleratedSurfaceMsg_BufferPresented_Params ack_params;
1630 ack_params.sync_point = 0; 1629 ack_params.sync_point = 0;
1631 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, 1630 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id,
1632 gpu_process_host_id, 1631 gpu_process_host_id,
1633 ack_params); 1632 ack_params);
1634 } 1633 }
1635 1634
1636 } // namespace content 1635 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/content_renderer.gypi » ('j') | content/renderer/media/media_stream_impl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698