| 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 894 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 905 switches::kEnableSandboxLogging, | 905 switches::kEnableSandboxLogging, |
| 906 #endif | 906 #endif |
| 907 switches::kEnableSoftwareCompositingGLAdapter, | 907 switches::kEnableSoftwareCompositingGLAdapter, |
| 908 switches::kEnableStatsTable, | 908 switches::kEnableStatsTable, |
| 909 switches::kEnableThreadedCompositing, | 909 switches::kEnableThreadedCompositing, |
| 910 switches::kEnableCompositingForFixedPosition, | 910 switches::kEnableCompositingForFixedPosition, |
| 911 switches::kEnableHighDpiCompositingForFixedPosition, | 911 switches::kEnableHighDpiCompositingForFixedPosition, |
| 912 switches::kDisableCompositingForFixedPosition, | 912 switches::kDisableCompositingForFixedPosition, |
| 913 switches::kEnableCompositingForTransition, | 913 switches::kEnableCompositingForTransition, |
| 914 switches::kDisableCompositingForTransition, | 914 switches::kDisableCompositingForTransition, |
| 915 switches::kEnableAcceleratedFixedRootBackground, |
| 916 switches::kDisableAcceleratedFixedRootBackground, |
| 915 switches::kDisableThreadedCompositing, | 917 switches::kDisableThreadedCompositing, |
| 916 switches::kDisableTouchAdjustment, | 918 switches::kDisableTouchAdjustment, |
| 917 switches::kDefaultTileWidth, | 919 switches::kDefaultTileWidth, |
| 918 switches::kDefaultTileHeight, | 920 switches::kDefaultTileHeight, |
| 919 switches::kMaxUntiledLayerWidth, | 921 switches::kMaxUntiledLayerWidth, |
| 920 switches::kMaxUntiledLayerHeight, | 922 switches::kMaxUntiledLayerHeight, |
| 921 switches::kEnableViewport, | 923 switches::kEnableViewport, |
| 922 switches::kEnableOpusPlayback, | 924 switches::kEnableOpusPlayback, |
| 923 switches::kEnableVp9Playback, | 925 switches::kEnableVp9Playback, |
| 924 switches::kEnableVp8AlphaPlayback, | 926 switches::kEnableVp8AlphaPlayback, |
| (...skipping 870 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1795 continue; | 1797 continue; |
| 1796 | 1798 |
| 1797 RenderViewHost* rvh = | 1799 RenderViewHost* rvh = |
| 1798 RenderViewHost::From(const_cast<RenderWidgetHost*>(widget)); | 1800 RenderViewHost::From(const_cast<RenderWidgetHost*>(widget)); |
| 1799 | 1801 |
| 1800 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); | 1802 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); |
| 1801 } | 1803 } |
| 1802 } | 1804 } |
| 1803 | 1805 |
| 1804 } // namespace content | 1806 } // namespace content |
| OLD | NEW |