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

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

Issue 16917014: Revert "Allow suppressed EME canPlayType() responses to be overridden with a flag." (r208096). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | media/base/media_switches.h » ('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 876 matching lines...) Expand 10 before | Expand all | Expand 10 after
887 switches::kEnableExperimentalWebSocket, 887 switches::kEnableExperimentalWebSocket,
888 switches::kDomAutomationController, 888 switches::kDomAutomationController,
889 switches::kEnableAccessibilityLogging, 889 switches::kEnableAccessibilityLogging,
890 switches::kEnableBeginFrameScheduling, 890 switches::kEnableBeginFrameScheduling,
891 switches::kEnableBrowserInputController, 891 switches::kEnableBrowserInputController,
892 switches::kEnableBrowserPluginForAllViewTypes, 892 switches::kEnableBrowserPluginForAllViewTypes,
893 switches::kEnableDCHECK, 893 switches::kEnableDCHECK,
894 switches::kEnableDelegatedRenderer, 894 switches::kEnableDelegatedRenderer,
895 switches::kEnableEncryptedMedia, 895 switches::kEnableEncryptedMedia,
896 switches::kDisableLegacyEncryptedMedia, 896 switches::kDisableLegacyEncryptedMedia,
897 switches::kOverrideEncryptedMediaCanPlayType,
898 switches::kEnableExperimentalWebKitFeatures, 897 switches::kEnableExperimentalWebKitFeatures,
899 switches::kEnableFixedLayout, 898 switches::kEnableFixedLayout,
900 switches::kEnableDeferredImageDecoding, 899 switches::kEnableDeferredImageDecoding,
901 switches::kEnableGPUServiceLogging, 900 switches::kEnableGPUServiceLogging,
902 switches::kEnableGPUClientLogging, 901 switches::kEnableGPUClientLogging,
903 switches::kEnableGpuClientTracing, 902 switches::kEnableGpuClientTracing,
904 switches::kEnableGpuBenchmarking, 903 switches::kEnableGpuBenchmarking,
905 switches::kEnableMemoryBenchmarking, 904 switches::kEnableMemoryBenchmarking,
906 switches::kEnableSkiaBenchmarking, 905 switches::kEnableSkiaBenchmarking,
907 switches::kEnableLogging, 906 switches::kEnableLogging,
(...skipping 868 matching lines...) Expand 10 before | Expand all | Expand 10 after
1776 // Skip widgets in other processes. 1775 // Skip widgets in other processes.
1777 if (widgets[i]->GetProcess()->GetID() != GetID()) 1776 if (widgets[i]->GetProcess()->GetID() != GetID())
1778 continue; 1777 continue;
1779 1778
1780 RenderViewHost* rvh = RenderViewHost::From(widgets[i]); 1779 RenderViewHost* rvh = RenderViewHost::From(widgets[i]);
1781 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); 1780 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences());
1782 } 1781 }
1783 } 1782 }
1784 1783
1785 } // namespace content 1784 } // namespace content
OLDNEW
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | media/base/media_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698