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