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