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

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: Rebase 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
« no previous file with comments | « chrome_frame/test/policy_settings_unittest.cc ('k') | content/public/common/content_switches.h » ('j') | no next file with comments »
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.
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 839 matching lines...) Expand 10 before | Expand all | Expand 10 after
850 switches::kEnableGpuClientTracing, 850 switches::kEnableGpuClientTracing,
851 switches::kEnableGpuBenchmarking, 851 switches::kEnableGpuBenchmarking,
852 switches::kEnableMemoryBenchmarking, 852 switches::kEnableMemoryBenchmarking,
853 switches::kEnableSkiaBenchmarking, 853 switches::kEnableSkiaBenchmarking,
854 switches::kEnableLogging, 854 switches::kEnableLogging,
855 switches::kEnableSpeechSynthesis, 855 switches::kEnableSpeechSynthesis,
856 switches::kEnableTouchDragDrop, 856 switches::kEnableTouchDragDrop,
857 switches::kEnableTouchEditing, 857 switches::kEnableTouchEditing,
858 switches::kEnableVsyncNotification, 858 switches::kEnableVsyncNotification,
859 switches::kEnableWebPInAcceptHeader, 859 switches::kEnableWebPInAcceptHeader,
860 switches::kDisableMediaSource, 860 switches::kDisableWebKitMediaSource,
861 switches::kEnableStrictSiteIsolation, 861 switches::kEnableStrictSiteIsolation,
862 switches::kDisableFullScreen, 862 switches::kDisableFullScreen,
863 switches::kEnableNewDialogStyle, 863 switches::kEnableNewDialogStyle,
864 #if defined(ENABLE_PLUGINS) 864 #if defined(ENABLE_PLUGINS)
865 switches::kEnablePepperTesting, 865 switches::kEnablePepperTesting,
866 switches::kDisablePepper3d, 866 switches::kDisablePepper3d,
867 #endif 867 #endif
868 switches::kEnablePreparsedJsCaching, 868 switches::kEnablePreparsedJsCaching,
869 switches::kEnablePruneGpuCommandBuffers, 869 switches::kEnablePruneGpuCommandBuffers,
870 switches::kEnablePinch, 870 switches::kEnablePinch,
(...skipping 879 matching lines...) Expand 10 before | Expand all | Expand 10 after
1750 TRACE_EVENT0("renderer_host", 1750 TRACE_EVENT0("renderer_host",
1751 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); 1751 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost");
1752 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; 1752 AcceleratedSurfaceMsg_BufferPresented_Params ack_params;
1753 ack_params.sync_point = 0; 1753 ack_params.sync_point = 0;
1754 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, 1754 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id,
1755 gpu_process_host_id, 1755 gpu_process_host_id,
1756 ack_params); 1756 ack_params);
1757 } 1757 }
1758 1758
1759 } // namespace content 1759 } // namespace content
OLDNEW
« no previous file with comments | « chrome_frame/test/policy_settings_unittest.cc ('k') | content/public/common/content_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698