| 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 954 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 965 switches::kDisableThreadedCompositing, | 965 switches::kDisableThreadedCompositing, |
| 966 switches::kDisableTouchAdjustment, | 966 switches::kDisableTouchAdjustment, |
| 967 switches::kDisableTouchDragDrop, | 967 switches::kDisableTouchDragDrop, |
| 968 switches::kDisableTouchEditing, | 968 switches::kDisableTouchEditing, |
| 969 switches::kDisableUniversalAcceleratedOverflowScroll, | 969 switches::kDisableUniversalAcceleratedOverflowScroll, |
| 970 switches::kDisableUnprefixedMediaSource, | 970 switches::kDisableUnprefixedMediaSource, |
| 971 switches::kDisableVp8AlphaPlayback, | 971 switches::kDisableVp8AlphaPlayback, |
| 972 switches::kDisableWebAnimationsCSS, | 972 switches::kDisableWebAnimationsCSS, |
| 973 switches::kDisableWebAudio, | 973 switches::kDisableWebAudio, |
| 974 switches::kDisableWebKitMediaSource, | 974 switches::kDisableWebKitMediaSource, |
| 975 switches::kDisableWebRtcHWEncoding, |
| 975 switches::kDomAutomationController, | 976 switches::kDomAutomationController, |
| 976 switches::kEnableAcceleratedFixedRootBackground, | 977 switches::kEnableAcceleratedFixedRootBackground, |
| 977 switches::kEnableAcceleratedOverflowScroll, | 978 switches::kEnableAcceleratedOverflowScroll, |
| 978 switches::kEnableAcceleratedScrollableFrames, | 979 switches::kEnableAcceleratedScrollableFrames, |
| 979 switches::kEnableAccessibilityLogging, | 980 switches::kEnableAccessibilityLogging, |
| 980 switches::kEnableBeginFrameScheduling, | 981 switches::kEnableBeginFrameScheduling, |
| 981 switches::kEnableBrowserPluginForAllViewTypes, | 982 switches::kEnableBrowserPluginForAllViewTypes, |
| 982 switches::kEnableCompositedScrollingForFrames, | 983 switches::kEnableCompositedScrollingForFrames, |
| 983 switches::kEnableCompositingForFixedPosition, | 984 switches::kEnableCompositingForFixedPosition, |
| 984 switches::kEnableCompositingForTransition, | 985 switches::kEnableCompositingForTransition, |
| (...skipping 909 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1894 // Skip widgets in other processes. | 1895 // Skip widgets in other processes. |
| 1895 if (widget->GetProcess()->GetID() != GetID()) | 1896 if (widget->GetProcess()->GetID() != GetID()) |
| 1896 continue; | 1897 continue; |
| 1897 | 1898 |
| 1898 RenderViewHost* rvh = RenderViewHost::From(widget); | 1899 RenderViewHost* rvh = RenderViewHost::From(widget); |
| 1899 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); | 1900 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); |
| 1900 } | 1901 } |
| 1901 } | 1902 } |
| 1902 | 1903 |
| 1903 } // namespace content | 1904 } // namespace content |
| OLD | NEW |