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

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: 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 911 matching lines...) Expand 10 before | Expand all | Expand 10 after
922 switches::kTraceStartup, 922 switches::kTraceStartup,
923 // This flag needs to be propagated to the renderer process for 923 // This flag needs to be propagated to the renderer process for
924 // --in-process-webgl. 924 // --in-process-webgl.
925 switches::kUseGL, 925 switches::kUseGL,
926 switches::kUseMobileUserAgent, 926 switches::kUseMobileUserAgent,
927 switches::kUserAgent, 927 switches::kUserAgent,
928 switches::kV, 928 switches::kV,
929 switches::kVideoThreads, 929 switches::kVideoThreads,
930 switches::kVModule, 930 switches::kVModule,
931 switches::kWebCoreLogChannels, 931 switches::kWebCoreLogChannels,
932 #if defined(ENABLE_WEBRTC)
933 switches::kEnableWebRtcAecRecordings,
Jói 2013/05/13 14:45:24 I think the section above is in mostly alphabetica
Henrik Grunell 2013/05/14 08:39:06 Done.
934 #endif
932 // Please keep these in alphabetical order. Compositor switches here should 935 // Please keep these in alphabetical order. Compositor switches here should
933 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. 936 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc.
934 cc::switches::kBackgroundColorInsteadOfCheckerboard, 937 cc::switches::kBackgroundColorInsteadOfCheckerboard,
935 cc::switches::kCompositeToMailbox, 938 cc::switches::kCompositeToMailbox,
936 cc::switches::kDisableColorEstimator, 939 cc::switches::kDisableColorEstimator,
937 cc::switches::kDisableImplSidePainting, 940 cc::switches::kDisableImplSidePainting,
938 cc::switches::kDisableThreadedAnimation, 941 cc::switches::kDisableThreadedAnimation,
939 cc::switches::kEnableCompositorFrameMessage, 942 cc::switches::kEnableCompositorFrameMessage,
940 cc::switches::kEnableImplSidePainting, 943 cc::switches::kEnableImplSidePainting,
941 cc::switches::kEnablePartialSwap, 944 cc::switches::kEnablePartialSwap,
(...skipping 806 matching lines...) Expand 10 before | Expand all | Expand 10 after
1748 TRACE_EVENT0("renderer_host", 1751 TRACE_EVENT0("renderer_host",
1749 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); 1752 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost");
1750 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; 1753 AcceleratedSurfaceMsg_BufferPresented_Params ack_params;
1751 ack_params.sync_point = 0; 1754 ack_params.sync_point = 0;
1752 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, 1755 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id,
1753 gpu_process_host_id, 1756 gpu_process_host_id,
1754 ack_params); 1757 ack_params);
1755 } 1758 }
1756 1759
1757 } // namespace content 1760 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/public/common/content_switches.h » ('j') | content/public/common/content_switches.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698