| 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 891 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 902 switches::kDisableTouchEditing, | 902 switches::kDisableTouchEditing, |
| 903 switches::kDisableVp8AlphaPlayback, | 903 switches::kDisableVp8AlphaPlayback, |
| 904 switches::kDisableWebAudio, | 904 switches::kDisableWebAudio, |
| 905 switches::kDisableWebKitMediaSource, | 905 switches::kDisableWebKitMediaSource, |
| 906 switches::kDomAutomationController, | 906 switches::kDomAutomationController, |
| 907 switches::kEnableAcceleratedFixedRootBackground, | 907 switches::kEnableAcceleratedFixedRootBackground, |
| 908 switches::kEnableAcceleratedOverflowScroll, | 908 switches::kEnableAcceleratedOverflowScroll, |
| 909 switches::kEnableAccessibilityLogging, | 909 switches::kEnableAccessibilityLogging, |
| 910 switches::kEnableBeginFrameScheduling, | 910 switches::kEnableBeginFrameScheduling, |
| 911 switches::kEnableBrowserPluginForAllViewTypes, | 911 switches::kEnableBrowserPluginForAllViewTypes, |
| 912 switches::kEnableBufferedInputRouter, | |
| 913 switches::kEnableCompositingForFixedPosition, | 912 switches::kEnableCompositingForFixedPosition, |
| 914 switches::kEnableCompositingForTransition, | 913 switches::kEnableCompositingForTransition, |
| 915 switches::kEnableDCHECK, | 914 switches::kEnableDCHECK, |
| 916 switches::kEnableDeadlineScheduling, | 915 switches::kEnableDeadlineScheduling, |
| 917 switches::kEnableDeferredImageDecoding, | 916 switches::kEnableDeferredImageDecoding, |
| 918 switches::kEnableDelegatedRenderer, | 917 switches::kEnableDelegatedRenderer, |
| 919 switches::kEnableEac3Playback, | 918 switches::kEnableEac3Playback, |
| 920 switches::kEnableEncryptedMedia, | 919 switches::kEnableEncryptedMedia, |
| 921 switches::kEnableExperimentalCanvasFeatures, | 920 switches::kEnableExperimentalCanvasFeatures, |
| 922 switches::kEnableExperimentalWebPlatformFeatures, | 921 switches::kEnableExperimentalWebPlatformFeatures, |
| (...skipping 868 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1791 // Skip widgets in other processes. | 1790 // Skip widgets in other processes. |
| 1792 if (widget->GetProcess()->GetID() != GetID()) | 1791 if (widget->GetProcess()->GetID() != GetID()) |
| 1793 continue; | 1792 continue; |
| 1794 | 1793 |
| 1795 RenderViewHost* rvh = RenderViewHost::From(widget); | 1794 RenderViewHost* rvh = RenderViewHost::From(widget); |
| 1796 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); | 1795 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); |
| 1797 } | 1796 } |
| 1798 } | 1797 } |
| 1799 | 1798 |
| 1800 } // namespace content | 1799 } // namespace content |
| OLD | NEW |