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 924 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
935 switches::kEnableAccessibilityLogging, | 935 switches::kEnableAccessibilityLogging, |
936 switches::kEnableBeginFrameScheduling, | 936 switches::kEnableBeginFrameScheduling, |
937 switches::kEnableBrowserPluginForAllViewTypes, | 937 switches::kEnableBrowserPluginForAllViewTypes, |
938 switches::kEnableCompositedScrollingForFrames, | 938 switches::kEnableCompositedScrollingForFrames, |
939 switches::kEnableCompositingForFixedPosition, | 939 switches::kEnableCompositingForFixedPosition, |
940 switches::kEnableCompositingForTransition, | 940 switches::kEnableCompositingForTransition, |
941 switches::kEnableDCHECK, | 941 switches::kEnableDCHECK, |
942 switches::kEnableDeadlineScheduling, | 942 switches::kEnableDeadlineScheduling, |
943 switches::kEnableDeferredImageDecoding, | 943 switches::kEnableDeferredImageDecoding, |
944 switches::kEnableDelegatedRenderer, | 944 switches::kEnableDelegatedRenderer, |
| 945 switches::kEnableDirectWrite, |
945 switches::kEnableEac3Playback, | 946 switches::kEnableEac3Playback, |
946 switches::kEnableEncryptedMedia, | 947 switches::kEnableEncryptedMedia, |
947 switches::kEnableExperimentalCanvasFeatures, | 948 switches::kEnableExperimentalCanvasFeatures, |
948 switches::kEnableExperimentalWebPlatformFeatures, | 949 switches::kEnableExperimentalWebPlatformFeatures, |
949 switches::kEnableExperimentalWebSocket, | 950 switches::kEnableExperimentalWebSocket, |
950 switches::kEnableFastTextAutosizing, | 951 switches::kEnableFastTextAutosizing, |
951 switches::kEnableGpuBenchmarking, | 952 switches::kEnableGpuBenchmarking, |
952 switches::kEnableGPUClientLogging, | 953 switches::kEnableGPUClientLogging, |
953 switches::kEnableGpuClientTracing, | 954 switches::kEnableGpuClientTracing, |
954 switches::kEnableGPUServiceLogging, | 955 switches::kEnableGPUServiceLogging, |
(...skipping 889 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1844 // Skip widgets in other processes. | 1845 // Skip widgets in other processes. |
1845 if (widget->GetProcess()->GetID() != GetID()) | 1846 if (widget->GetProcess()->GetID() != GetID()) |
1846 continue; | 1847 continue; |
1847 | 1848 |
1848 RenderViewHost* rvh = RenderViewHost::From(widget); | 1849 RenderViewHost* rvh = RenderViewHost::From(widget); |
1849 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); | 1850 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); |
1850 } | 1851 } |
1851 } | 1852 } |
1852 | 1853 |
1853 } // namespace content | 1854 } // namespace content |
OLD | NEW |