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 884 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
895 switches::kDisableDeadlineScheduling, | 895 switches::kDisableDeadlineScheduling, |
896 switches::kDisableDelegatedRenderer, | 896 switches::kDisableDelegatedRenderer, |
897 switches::kDisableDesktopNotifications, | 897 switches::kDisableDesktopNotifications, |
898 switches::kDisableDeviceMotion, | 898 switches::kDisableDeviceMotion, |
899 switches::kDisableDeviceOrientation, | 899 switches::kDisableDeviceOrientation, |
900 switches::kDisableDirectNPAPIRequests, | 900 switches::kDisableDirectNPAPIRequests, |
901 switches::kDisableFileSystem, | 901 switches::kDisableFileSystem, |
902 switches::kDisableFiltersOverIPC, | 902 switches::kDisableFiltersOverIPC, |
903 switches::kDisableFullScreen, | 903 switches::kDisableFullScreen, |
904 switches::kDisableGeolocation, | 904 switches::kDisableGeolocation, |
905 switches::kDisableGLMultisampling, | |
906 switches::kDisableGpu, | 905 switches::kDisableGpu, |
907 switches::kDisableGpuCompositing, | 906 switches::kDisableGpuCompositing, |
908 switches::kDisableGpuVsync, | 907 switches::kDisableGpuVsync, |
909 switches::kDisableHistogramCustomizer, | 908 switches::kDisableHistogramCustomizer, |
910 switches::kDisableLocalStorage, | 909 switches::kDisableLocalStorage, |
911 switches::kDisableLogging, | 910 switches::kDisableLogging, |
912 switches::kDisablePinch, | 911 switches::kDisablePinch, |
913 switches::kDisablePrefixedEncryptedMedia, | 912 switches::kDisablePrefixedEncryptedMedia, |
914 switches::kDisableSeccompFilterSandbox, | 913 switches::kDisableSeccompFilterSandbox, |
915 switches::kDisableSessionStorage, | 914 switches::kDisableSessionStorage, |
(...skipping 919 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1835 // Skip widgets in other processes. | 1834 // Skip widgets in other processes. |
1836 if (widget->GetProcess()->GetID() != GetID()) | 1835 if (widget->GetProcess()->GetID() != GetID()) |
1837 continue; | 1836 continue; |
1838 | 1837 |
1839 RenderViewHost* rvh = RenderViewHost::From(widget); | 1838 RenderViewHost* rvh = RenderViewHost::From(widget); |
1840 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); | 1839 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); |
1841 } | 1840 } |
1842 } | 1841 } |
1843 | 1842 |
1844 } // namespace content | 1843 } // namespace content |
OLD | NEW |