| 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 956 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 967 switches::kEnableSkiaBenchmarking, | 967 switches::kEnableSkiaBenchmarking, |
| 968 switches::kEnableSoftwareCompositing, | 968 switches::kEnableSoftwareCompositing, |
| 969 switches::kEnableSpeechSynthesis, | 969 switches::kEnableSpeechSynthesis, |
| 970 switches::kEnableStatsTable, | 970 switches::kEnableStatsTable, |
| 971 switches::kEnableStrictSiteIsolation, | 971 switches::kEnableStrictSiteIsolation, |
| 972 switches::kEnableThreadedCompositing, | 972 switches::kEnableThreadedCompositing, |
| 973 switches::kEnableUniversalAcceleratedOverflowScroll, | 973 switches::kEnableUniversalAcceleratedOverflowScroll, |
| 974 switches::kEnableTouchDragDrop, | 974 switches::kEnableTouchDragDrop, |
| 975 switches::kEnableTouchEditing, | 975 switches::kEnableTouchEditing, |
| 976 switches::kEnableViewport, | 976 switches::kEnableViewport, |
| 977 switches::kEnableViewportMeta, |
| 978 switches::kMainFrameResizesAreOrientationChanges, |
| 977 switches::kEnableVtune, | 979 switches::kEnableVtune, |
| 978 switches::kEnableWebAnimationsCSS, | 980 switches::kEnableWebAnimationsCSS, |
| 979 switches::kEnableWebAnimationsSVG, | 981 switches::kEnableWebAnimationsSVG, |
| 980 switches::kEnableWebGLDraftExtensions, | 982 switches::kEnableWebGLDraftExtensions, |
| 981 switches::kEnableWebMIDI, | 983 switches::kEnableWebMIDI, |
| 982 switches::kForceDeviceScaleFactor, | 984 switches::kForceDeviceScaleFactor, |
| 983 switches::kFullMemoryCrashReport, | 985 switches::kFullMemoryCrashReport, |
| 984 switches::kJavaScriptFlags, | 986 switches::kJavaScriptFlags, |
| 985 switches::kLoggingLevel, | 987 switches::kLoggingLevel, |
| 986 switches::kMaxUntiledLayerWidth, | 988 switches::kMaxUntiledLayerWidth, |
| (...skipping 848 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1835 // Skip widgets in other processes. | 1837 // Skip widgets in other processes. |
| 1836 if (widget->GetProcess()->GetID() != GetID()) | 1838 if (widget->GetProcess()->GetID() != GetID()) |
| 1837 continue; | 1839 continue; |
| 1838 | 1840 |
| 1839 RenderViewHost* rvh = RenderViewHost::From(widget); | 1841 RenderViewHost* rvh = RenderViewHost::From(widget); |
| 1840 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); | 1842 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); |
| 1841 } | 1843 } |
| 1842 } | 1844 } |
| 1843 | 1845 |
| 1844 } // namespace content | 1846 } // namespace content |
| OLD | NEW |