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

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

Issue 1840173004: Flip unified media pipeline to default-on w/ disabled holdback. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix outstanding failures. Created 4 years, 8 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 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 1551 matching lines...) Expand 10 before | Expand all | Expand 10 after
1562 switches::kEnableWebRtcDtls12, 1562 switches::kEnableWebRtcDtls12,
1563 switches::kEnableWebRtcHWH264Encoding, 1563 switches::kEnableWebRtcHWH264Encoding,
1564 switches::kEnableWebRtcStunOrigin, 1564 switches::kEnableWebRtcStunOrigin,
1565 switches::kEnforceWebRtcIPPermissionCheck, 1565 switches::kEnforceWebRtcIPPermissionCheck,
1566 switches::kForceWebRtcIPHandlingPolicy, 1566 switches::kForceWebRtcIPHandlingPolicy,
1567 switches::kWebRtcMaxCaptureFramerate, 1567 switches::kWebRtcMaxCaptureFramerate,
1568 #endif 1568 #endif
1569 switches::kEnableLowEndDeviceMode, 1569 switches::kEnableLowEndDeviceMode,
1570 switches::kDisableLowEndDeviceMode, 1570 switches::kDisableLowEndDeviceMode,
1571 #if defined(OS_ANDROID) 1571 #if defined(OS_ANDROID)
1572 switches::kEnableUnifiedMediaPipeline, 1572 switches::kDisableUnifiedMediaPipeline,
1573 switches::kIPCSyncCompositing, 1573 switches::kIPCSyncCompositing,
1574 switches::kRendererWaitForJavaDebugger, 1574 switches::kRendererWaitForJavaDebugger,
1575 #endif 1575 #endif
1576 #if defined(OS_MACOSX) 1576 #if defined(OS_MACOSX)
1577 // Allow this to be set when invoking the browser and relayed along. 1577 // Allow this to be set when invoking the browser and relayed along.
1578 switches::kEnableSandboxLogging, 1578 switches::kEnableSandboxLogging,
1579 #endif 1579 #endif
1580 #if defined(OS_WIN) 1580 #if defined(OS_WIN)
1581 switches::kDisableDirectWrite, 1581 switches::kDisableDirectWrite,
1582 switches::kDisableWin32kRendererLockDown, 1582 switches::kDisableWin32kRendererLockDown,
(...skipping 1220 matching lines...) Expand 10 before | Expand all | Expand 10 after
2803 2803
2804 // Skip widgets in other processes. 2804 // Skip widgets in other processes.
2805 if (rvh->GetProcess()->GetID() != GetID()) 2805 if (rvh->GetProcess()->GetID() != GetID())
2806 continue; 2806 continue;
2807 2807
2808 rvh->OnWebkitPreferencesChanged(); 2808 rvh->OnWebkitPreferencesChanged();
2809 } 2809 }
2810 } 2810 }
2811 2811
2812 } // namespace content 2812 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698