OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |