| 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 970 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 981 switches::kEnableDeadlineScheduling, | 981 switches::kEnableDeadlineScheduling, |
| 982 switches::kEnableDeferredImageDecoding, | 982 switches::kEnableDeferredImageDecoding, |
| 983 switches::kEnableDelegatedRenderer, | 983 switches::kEnableDelegatedRenderer, |
| 984 switches::kEnableEac3Playback, | 984 switches::kEnableEac3Playback, |
| 985 switches::kEnableEncryptedMedia, | 985 switches::kEnableEncryptedMedia, |
| 986 switches::kEnableExperimentalCanvasFeatures, | 986 switches::kEnableExperimentalCanvasFeatures, |
| 987 switches::kEnableExperimentalWebPlatformFeatures, | 987 switches::kEnableExperimentalWebPlatformFeatures, |
| 988 switches::kEnableExperimentalWebSocket, | 988 switches::kEnableExperimentalWebSocket, |
| 989 switches::kEnableFastTextAutosizing, | 989 switches::kEnableFastTextAutosizing, |
| 990 switches::kEnableGpuBenchmarking, | 990 switches::kEnableGpuBenchmarking, |
| 991 switches::kEnableGPUClientLogging, | |
| 992 switches::kEnableGpuClientTracing, | 991 switches::kEnableGpuClientTracing, |
| 993 switches::kEnableGPUServiceLogging, | |
| 994 switches::kEnableHighDpiCompositingForFixedPosition, | 992 switches::kEnableHighDpiCompositingForFixedPosition, |
| 995 switches::kEnableHTMLImports, | 993 switches::kEnableHTMLImports, |
| 996 switches::kEnableInbandTextTracks, | 994 switches::kEnableInbandTextTracks, |
| 997 switches::kEnableInputModeAttribute, | 995 switches::kEnableInputModeAttribute, |
| 998 switches::kEnableLayerSquashing, | 996 switches::kEnableLayerSquashing, |
| 999 switches::kEnableLogging, | 997 switches::kEnableLogging, |
| 1000 switches::kEnableMP3StreamParser, | 998 switches::kEnableMP3StreamParser, |
| 1001 switches::kEnableMemoryBenchmarking, | 999 switches::kEnableMemoryBenchmarking, |
| 1002 switches::kEnableOverlayFullscreenVideo, | 1000 switches::kEnableOverlayFullscreenVideo, |
| 1003 switches::kEnableOverlayScrollbars, | 1001 switches::kEnableOverlayScrollbars, |
| (...skipping 887 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1891 // Skip widgets in other processes. | 1889 // Skip widgets in other processes. |
| 1892 if (widget->GetProcess()->GetID() != GetID()) | 1890 if (widget->GetProcess()->GetID() != GetID()) |
| 1893 continue; | 1891 continue; |
| 1894 | 1892 |
| 1895 RenderViewHost* rvh = RenderViewHost::From(widget); | 1893 RenderViewHost* rvh = RenderViewHost::From(widget); |
| 1896 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); | 1894 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); |
| 1897 } | 1895 } |
| 1898 } | 1896 } |
| 1899 | 1897 |
| 1900 } // namespace content | 1898 } // namespace content |
| OLD | NEW |