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

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

Issue 23903023: Add --mediadrm-enable-non-compositing flag for Chrome on Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments 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
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 873 matching lines...) Expand 10 before | Expand all | Expand 10 after
884 switches::kDomAutomationController, 884 switches::kDomAutomationController,
885 switches::kEnableAccessibilityLogging, 885 switches::kEnableAccessibilityLogging,
886 switches::kEnableBeginFrameScheduling, 886 switches::kEnableBeginFrameScheduling,
887 switches::kEnableBrowserInputController, 887 switches::kEnableBrowserInputController,
888 switches::kEnableBrowserPluginForAllViewTypes, 888 switches::kEnableBrowserPluginForAllViewTypes,
889 switches::kEnableDCHECK, 889 switches::kEnableDCHECK,
890 switches::kEnableDelegatedRenderer, 890 switches::kEnableDelegatedRenderer,
891 switches::kEnableEncryptedMedia, 891 switches::kEnableEncryptedMedia,
892 switches::kDisableLegacyEncryptedMedia, 892 switches::kDisableLegacyEncryptedMedia,
893 switches::kOverrideEncryptedMediaCanPlayType, 893 switches::kOverrideEncryptedMediaCanPlayType,
894 #if defined(OS_ANDROID)
895 switches::kMediaDrmEnableNonCompositing,
896 #endif
894 switches::kEnableExperimentalWebPlatformFeatures, 897 switches::kEnableExperimentalWebPlatformFeatures,
895 switches::kEnableFixedLayout, 898 switches::kEnableFixedLayout,
896 switches::kEnableDeferredImageDecoding, 899 switches::kEnableDeferredImageDecoding,
897 switches::kEnableGPUServiceLogging, 900 switches::kEnableGPUServiceLogging,
898 switches::kEnableGPUClientLogging, 901 switches::kEnableGPUClientLogging,
899 switches::kEnableGpuClientTracing, 902 switches::kEnableGpuClientTracing,
900 switches::kEnableGpuBenchmarking, 903 switches::kEnableGpuBenchmarking,
901 switches::kEnableMP3StreamParser, 904 switches::kEnableMP3StreamParser,
902 switches::kEnableMemoryBenchmarking, 905 switches::kEnableMemoryBenchmarking,
903 switches::kEnableOverlayScrollbars, 906 switches::kEnableOverlayScrollbars,
(...skipping 865 matching lines...) Expand 10 before | Expand all | Expand 10 after
1769 // Skip widgets in other processes. 1772 // Skip widgets in other processes.
1770 if (widgets[i]->GetProcess()->GetID() != GetID()) 1773 if (widgets[i]->GetProcess()->GetID() != GetID())
1771 continue; 1774 continue;
1772 1775
1773 RenderViewHost* rvh = RenderViewHost::From(widgets[i]); 1776 RenderViewHost* rvh = RenderViewHost::From(widgets[i]);
1774 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); 1777 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences());
1775 } 1778 }
1776 } 1779 }
1777 1780
1778 } // namespace content 1781 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698