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

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

Issue 13890012: Integrate VDA with WebRTC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase, make Reset/Release async, and move RVD creation to RVDF::ctor Created 7 years, 6 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
Ami GONE FROM CHROMIUM 2013/06/18 21:54:29 Can you add perf #s to the CL description?
wuchengli 2013/06/19 13:01:13 Done.
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>
11 #include <limits> 11 #include <limits>
(...skipping 870 matching lines...) Expand 10 before | Expand all | Expand 10 after
882 switches::kEnableGpuBenchmarking, 882 switches::kEnableGpuBenchmarking,
883 switches::kEnableMemoryBenchmarking, 883 switches::kEnableMemoryBenchmarking,
884 switches::kEnableSkiaBenchmarking, 884 switches::kEnableSkiaBenchmarking,
885 switches::kEnableLogging, 885 switches::kEnableLogging,
886 switches::kEnableSpeechSynthesis, 886 switches::kEnableSpeechSynthesis,
887 switches::kEnableTouchDragDrop, 887 switches::kEnableTouchDragDrop,
888 switches::kEnableTouchEditing, 888 switches::kEnableTouchEditing,
889 switches::kEnableWebPInAcceptHeader, 889 switches::kEnableWebPInAcceptHeader,
890 #if defined(ENABLE_WEBRTC) 890 #if defined(ENABLE_WEBRTC)
891 switches::kEnableWebRtcAecRecordings, 891 switches::kEnableWebRtcAecRecordings,
892 switches::kEnableWebRTCHWDecoding,
892 #endif 893 #endif
893 #if defined(ANDROID) && !defined(GOOGLE_TV) 894 #if defined(ANDROID) && !defined(GOOGLE_TV)
894 switches::kEnableWebKitMediaSource, 895 switches::kEnableWebKitMediaSource,
895 #else 896 #else
896 switches::kDisableWebKitMediaSource, 897 switches::kDisableWebKitMediaSource,
897 #endif 898 #endif
898 switches::kEnableOverscrollNotifications, 899 switches::kEnableOverscrollNotifications,
899 switches::kEnableStrictSiteIsolation, 900 switches::kEnableStrictSiteIsolation,
900 switches::kDisableFullScreen, 901 switches::kDisableFullScreen,
901 switches::kEnableNewDialogStyle, 902 switches::kEnableNewDialogStyle,
(...skipping 892 matching lines...) Expand 10 before | Expand all | Expand 10 after
1794 continue; 1795 continue;
1795 1796
1796 RenderViewHost* rvh = 1797 RenderViewHost* rvh =
1797 RenderViewHost::From(const_cast<RenderWidgetHost*>(widget)); 1798 RenderViewHost::From(const_cast<RenderWidgetHost*>(widget));
1798 1799
1799 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); 1800 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences());
1800 } 1801 }
1801 } 1802 }
1802 1803
1803 } // namespace content 1804 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/content_renderer.gypi » ('j') | content/renderer/media/rtc_video_decoder.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698