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

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

Issue 14582024: Change media source switch to refer to the prefixed API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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 | Annotate | Revision Log
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 837 matching lines...) Expand 10 before | Expand all | Expand 10 after
848 switches::kEnableGPUClientLogging, 848 switches::kEnableGPUClientLogging,
849 switches::kEnableGpuClientTracing, 849 switches::kEnableGpuClientTracing,
850 switches::kEnableGpuBenchmarking, 850 switches::kEnableGpuBenchmarking,
851 switches::kEnableMemoryBenchmarking, 851 switches::kEnableMemoryBenchmarking,
852 switches::kEnableLogging, 852 switches::kEnableLogging,
853 switches::kEnableSpeechSynthesis, 853 switches::kEnableSpeechSynthesis,
854 switches::kEnableTouchDragDrop, 854 switches::kEnableTouchDragDrop,
855 switches::kEnableTouchEditing, 855 switches::kEnableTouchEditing,
856 switches::kEnableVsyncNotification, 856 switches::kEnableVsyncNotification,
857 switches::kEnableWebPInAcceptHeader, 857 switches::kEnableWebPInAcceptHeader,
858 switches::kDisableMediaSource, 858 switches::kDisableWebKitMediaSource,
859 switches::kEnableStrictSiteIsolation, 859 switches::kEnableStrictSiteIsolation,
860 switches::kDisableFullScreen, 860 switches::kDisableFullScreen,
861 switches::kEnableNewDialogStyle, 861 switches::kEnableNewDialogStyle,
862 #if defined(ENABLE_PLUGINS) 862 #if defined(ENABLE_PLUGINS)
863 switches::kEnablePepperTesting, 863 switches::kEnablePepperTesting,
864 switches::kDisablePepper3d, 864 switches::kDisablePepper3d,
865 #endif 865 #endif
866 switches::kEnablePreparsedJsCaching, 866 switches::kEnablePreparsedJsCaching,
867 switches::kEnablePruneGpuCommandBuffers, 867 switches::kEnablePruneGpuCommandBuffers,
868 switches::kEnablePinch, 868 switches::kEnablePinch,
(...skipping 879 matching lines...) Expand 10 before | Expand all | Expand 10 after
1748 TRACE_EVENT0("renderer_host", 1748 TRACE_EVENT0("renderer_host",
1749 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); 1749 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost");
1750 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; 1750 AcceleratedSurfaceMsg_BufferPresented_Params ack_params;
1751 ack_params.sync_point = 0; 1751 ack_params.sync_point = 0;
1752 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, 1752 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id,
1753 gpu_process_host_id, 1753 gpu_process_host_id,
1754 ack_params); 1754 ack_params);
1755 } 1755 }
1756 1756
1757 } // namespace content 1757 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698