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::kDomAutomationController, | 894 switches::kDomAutomationController, |
895 switches::kEnableAccessibilityLogging, | 895 switches::kEnableAccessibilityLogging, |
896 switches::kEnableBeginFrameScheduling, | 896 switches::kEnableBeginFrameScheduling, |
897 switches::kEnableBrowserInputController, | 897 switches::kEnableBrowserInputController, |
898 switches::kEnableBrowserPluginForAllViewTypes, | 898 switches::kEnableBrowserPluginForAllViewTypes, |
899 switches::kEnableDCHECK, | 899 switches::kEnableDCHECK, |
900 switches::kEnableDelegatedRenderer, | 900 switches::kEnableDelegatedRenderer, |
901 switches::kEnableEncryptedMedia, | 901 switches::kEnableEncryptedMedia, |
902 switches::kDisableLegacyEncryptedMedia, | 902 switches::kDisableLegacyEncryptedMedia, |
903 switches::kOverrideEncryptedMediaCanPlayType, | 903 switches::kOverrideEncryptedMediaCanPlayType, |
904 switches::kEnableExperimentalWebKitFeatures, | 904 switches::kEnableExperimentalWebPlatformFeatures, |
905 switches::kEnableFixedLayout, | 905 switches::kEnableFixedLayout, |
906 switches::kEnableDeferredImageDecoding, | 906 switches::kEnableDeferredImageDecoding, |
907 switches::kEnableGPUServiceLogging, | 907 switches::kEnableGPUServiceLogging, |
908 switches::kEnableGPUClientLogging, | 908 switches::kEnableGPUClientLogging, |
909 switches::kEnableGpuClientTracing, | 909 switches::kEnableGpuClientTracing, |
910 switches::kEnableGpuBenchmarking, | 910 switches::kEnableGpuBenchmarking, |
911 switches::kEnableMemoryBenchmarking, | 911 switches::kEnableMemoryBenchmarking, |
912 switches::kEnableSkiaBenchmarking, | 912 switches::kEnableSkiaBenchmarking, |
913 switches::kEnableLogging, | 913 switches::kEnableLogging, |
914 switches::kEnableSpeechSynthesis, | 914 switches::kEnableSpeechSynthesis, |
(...skipping 862 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1777 // Skip widgets in other processes. | 1777 // Skip widgets in other processes. |
1778 if (widgets[i]->GetProcess()->GetID() != GetID()) | 1778 if (widgets[i]->GetProcess()->GetID() != GetID()) |
1779 continue; | 1779 continue; |
1780 | 1780 |
1781 RenderViewHost* rvh = RenderViewHost::From(widgets[i]); | 1781 RenderViewHost* rvh = RenderViewHost::From(widgets[i]); |
1782 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); | 1782 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); |
1783 } | 1783 } |
1784 } | 1784 } |
1785 | 1785 |
1786 } // namespace content | 1786 } // namespace content |
OLD | NEW |