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

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

Issue 20632002: Add media::VideoEncodeAccelerator with WebRTC integration (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@git-svn
Patch Set: d3982027 CQ nits. Created 7 years, 4 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
« no previous file with comments | « chrome/browser/chromeos/login/chrome_restart_request.cc ('k') | content/common/gpu/DEPS » ('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 923 matching lines...) Expand 10 before | Expand all | Expand 10 after
934 switches::kEnableMemoryBenchmarking, 934 switches::kEnableMemoryBenchmarking,
935 switches::kEnableSkiaBenchmarking, 935 switches::kEnableSkiaBenchmarking,
936 switches::kEnableLogging, 936 switches::kEnableLogging,
937 switches::kEnableSpeechSynthesis, 937 switches::kEnableSpeechSynthesis,
938 switches::kEnableTouchDragDrop, 938 switches::kEnableTouchDragDrop,
939 switches::kEnableTouchEditing, 939 switches::kEnableTouchEditing,
940 #if defined(ENABLE_WEBRTC) 940 #if defined(ENABLE_WEBRTC)
941 switches::kEnableWebRtcAecRecordings, 941 switches::kEnableWebRtcAecRecordings,
942 switches::kEnableWebRtcTcpServerSocket, 942 switches::kEnableWebRtcTcpServerSocket,
943 switches::kEnableWebRtcHWDecoding, 943 switches::kEnableWebRtcHWDecoding,
944 switches::kEnableWebRtcHWEncoding,
944 #endif 945 #endif
945 switches::kDisableWebKitMediaSource, 946 switches::kDisableWebKitMediaSource,
946 switches::kEnableOverscrollNotifications, 947 switches::kEnableOverscrollNotifications,
947 switches::kEnableStrictSiteIsolation, 948 switches::kEnableStrictSiteIsolation,
948 switches::kDisableFullScreen, 949 switches::kDisableFullScreen,
949 switches::kEnableNewDialogStyle, 950 switches::kEnableNewDialogStyle,
950 #if defined(ENABLE_PLUGINS) 951 #if defined(ENABLE_PLUGINS)
951 switches::kEnablePepperTesting, 952 switches::kEnablePepperTesting,
952 switches::kDisablePepper3d, 953 switches::kDisablePepper3d,
953 #endif 954 #endif
(...skipping 850 matching lines...) Expand 10 before | Expand all | Expand 10 after
1804 // Skip widgets in other processes. 1805 // Skip widgets in other processes.
1805 if (widgets[i]->GetProcess()->GetID() != GetID()) 1806 if (widgets[i]->GetProcess()->GetID() != GetID())
1806 continue; 1807 continue;
1807 1808
1808 RenderViewHost* rvh = RenderViewHost::From(widgets[i]); 1809 RenderViewHost* rvh = RenderViewHost::From(widgets[i]);
1809 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); 1810 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences());
1810 } 1811 }
1811 } 1812 }
1812 1813
1813 } // namespace content 1814 } // namespace content
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/chrome_restart_request.cc ('k') | content/common/gpu/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698