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

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

Issue 23454006: Implement experimental MP3 support for Media Source API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added Icecast test. Created 7 years, 3 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 | media/DEPS » ('j') | media/filters/pipeline_integration_test.cc » ('J')
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 883 matching lines...) Expand 10 before | Expand all | Expand 10 after
894 switches::kEnableEncryptedMedia, 894 switches::kEnableEncryptedMedia,
895 switches::kDisableLegacyEncryptedMedia, 895 switches::kDisableLegacyEncryptedMedia,
896 switches::kOverrideEncryptedMediaCanPlayType, 896 switches::kOverrideEncryptedMediaCanPlayType,
897 switches::kEnableExperimentalWebPlatformFeatures, 897 switches::kEnableExperimentalWebPlatformFeatures,
898 switches::kEnableFixedLayout, 898 switches::kEnableFixedLayout,
899 switches::kEnableDeferredImageDecoding, 899 switches::kEnableDeferredImageDecoding,
900 switches::kEnableGPUServiceLogging, 900 switches::kEnableGPUServiceLogging,
901 switches::kEnableGPUClientLogging, 901 switches::kEnableGPUClientLogging,
902 switches::kEnableGpuClientTracing, 902 switches::kEnableGpuClientTracing,
903 switches::kEnableGpuBenchmarking, 903 switches::kEnableGpuBenchmarking,
904 switches::kEnableMP3StreamParser,
904 switches::kEnableMemoryBenchmarking, 905 switches::kEnableMemoryBenchmarking,
905 switches::kEnableOverlayScrollbars, 906 switches::kEnableOverlayScrollbars,
906 switches::kEnableSkiaBenchmarking, 907 switches::kEnableSkiaBenchmarking,
907 switches::kEnableLogging, 908 switches::kEnableLogging,
908 switches::kEnableSpeechSynthesis, 909 switches::kEnableSpeechSynthesis,
909 switches::kEnableTouchDragDrop, 910 switches::kEnableTouchDragDrop,
910 switches::kEnableTouchEditing, 911 switches::kEnableTouchEditing,
911 #if defined(ENABLE_WEBRTC) 912 #if defined(ENABLE_WEBRTC)
912 switches::kEnableWebRtcAecRecordings, 913 switches::kEnableWebRtcAecRecordings,
913 switches::kEnableWebRtcTcpServerSocket, 914 switches::kEnableWebRtcTcpServerSocket,
(...skipping 859 matching lines...) Expand 10 before | Expand all | Expand 10 after
1773 // Skip widgets in other processes. 1774 // Skip widgets in other processes.
1774 if (widgets[i]->GetProcess()->GetID() != GetID()) 1775 if (widgets[i]->GetProcess()->GetID() != GetID())
1775 continue; 1776 continue;
1776 1777
1777 RenderViewHost* rvh = RenderViewHost::From(widgets[i]); 1778 RenderViewHost* rvh = RenderViewHost::From(widgets[i]);
1778 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); 1779 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences());
1779 } 1780 }
1780 } 1781 }
1781 1782
1782 } // namespace content 1783 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | media/DEPS » ('j') | media/filters/pipeline_integration_test.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698