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 876 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 Loading... |
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 |
OLD | NEW |