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

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

Issue 14893006: Add flag for enabling WebRTC AEC debug recordings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Hard coded string in wait for libjingle roll. 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 | « no previous file | 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 846 matching lines...) Expand 10 before | Expand all | Expand 10 after
857 switches::kEnableGpuClientTracing, 857 switches::kEnableGpuClientTracing,
858 switches::kEnableGpuBenchmarking, 858 switches::kEnableGpuBenchmarking,
859 switches::kEnableMemoryBenchmarking, 859 switches::kEnableMemoryBenchmarking,
860 switches::kEnableSkiaBenchmarking, 860 switches::kEnableSkiaBenchmarking,
861 switches::kEnableLogging, 861 switches::kEnableLogging,
862 switches::kEnableSpeechSynthesis, 862 switches::kEnableSpeechSynthesis,
863 switches::kEnableTouchDragDrop, 863 switches::kEnableTouchDragDrop,
864 switches::kEnableTouchEditing, 864 switches::kEnableTouchEditing,
865 switches::kEnableVsyncNotification, 865 switches::kEnableVsyncNotification,
866 switches::kEnableWebPInAcceptHeader, 866 switches::kEnableWebPInAcceptHeader,
867 #if defined(ENABLE_WEBRTC)
868 switches::kEnableWebRtcAecRecordings,
869 #endif
867 switches::kDisableWebKitMediaSource, 870 switches::kDisableWebKitMediaSource,
868 switches::kEnableOverscrollNotifications, 871 switches::kEnableOverscrollNotifications,
869 switches::kEnableStrictSiteIsolation, 872 switches::kEnableStrictSiteIsolation,
870 switches::kDisableFullScreen, 873 switches::kDisableFullScreen,
871 switches::kEnableNewDialogStyle, 874 switches::kEnableNewDialogStyle,
872 #if defined(ENABLE_PLUGINS) 875 #if defined(ENABLE_PLUGINS)
873 switches::kEnablePepperTesting, 876 switches::kEnablePepperTesting,
874 switches::kDisablePepper3d, 877 switches::kDisablePepper3d,
875 #endif 878 #endif
876 switches::kEnablePreparsedJsCaching, 879 switches::kEnablePreparsedJsCaching,
(...skipping 879 matching lines...) Expand 10 before | Expand all | Expand 10 after
1756 TRACE_EVENT0("renderer_host", 1759 TRACE_EVENT0("renderer_host",
1757 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); 1760 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost");
1758 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; 1761 AcceleratedSurfaceMsg_BufferPresented_Params ack_params;
1759 ack_params.sync_point = 0; 1762 ack_params.sync_point = 0;
1760 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, 1763 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id,
1761 gpu_process_host_id, 1764 gpu_process_host_id,
1762 ack_params); 1765 ack_params);
1763 } 1766 }
1764 1767
1765 } // namespace content 1768 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/public/common/content_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698