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 969 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
980 switches::kEnableAccessibilityLogging, | 980 switches::kEnableAccessibilityLogging, |
981 switches::kEnableBeginFrameScheduling, | 981 switches::kEnableBeginFrameScheduling, |
982 switches::kEnableBrowserPluginForAllViewTypes, | 982 switches::kEnableBrowserPluginForAllViewTypes, |
983 switches::kEnableCompositedScrollingForFrames, | 983 switches::kEnableCompositedScrollingForFrames, |
984 switches::kEnableCompositingForFixedPosition, | 984 switches::kEnableCompositingForFixedPosition, |
985 switches::kEnableCompositingForTransition, | 985 switches::kEnableCompositingForTransition, |
986 switches::kEnableDCHECK, | 986 switches::kEnableDCHECK, |
987 switches::kEnableDeadlineScheduling, | 987 switches::kEnableDeadlineScheduling, |
988 switches::kEnableDeferredImageDecoding, | 988 switches::kEnableDeferredImageDecoding, |
989 switches::kEnableDelegatedRenderer, | 989 switches::kEnableDelegatedRenderer, |
| 990 switches::kEnableDomDistiller, |
990 switches::kEnableEac3Playback, | 991 switches::kEnableEac3Playback, |
991 switches::kEnableEncryptedMedia, | 992 switches::kEnableEncryptedMedia, |
992 switches::kEnableExperimentalCanvasFeatures, | 993 switches::kEnableExperimentalCanvasFeatures, |
993 switches::kEnableExperimentalWebPlatformFeatures, | 994 switches::kEnableExperimentalWebPlatformFeatures, |
994 switches::kEnableExperimentalWebSocket, | 995 switches::kEnableExperimentalWebSocket, |
995 switches::kEnableFastTextAutosizing, | 996 switches::kEnableFastTextAutosizing, |
996 switches::kEnableGpuBenchmarking, | 997 switches::kEnableGpuBenchmarking, |
997 switches::kEnableGPUClientLogging, | 998 switches::kEnableGPUClientLogging, |
998 switches::kEnableGpuClientTracing, | 999 switches::kEnableGpuClientTracing, |
999 switches::kEnableGPUServiceLogging, | 1000 switches::kEnableGPUServiceLogging, |
(...skipping 896 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1896 // Skip widgets in other processes. | 1897 // Skip widgets in other processes. |
1897 if (widget->GetProcess()->GetID() != GetID()) | 1898 if (widget->GetProcess()->GetID() != GetID()) |
1898 continue; | 1899 continue; |
1899 | 1900 |
1900 RenderViewHost* rvh = RenderViewHost::From(widget); | 1901 RenderViewHost* rvh = RenderViewHost::From(widget); |
1901 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); | 1902 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); |
1902 } | 1903 } |
1903 } | 1904 } |
1904 | 1905 |
1905 } // namespace content | 1906 } // namespace content |
OLD | NEW |