| 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 913 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 924 switches::kEnableDeferredImageDecoding, | 924 switches::kEnableDeferredImageDecoding, |
| 925 switches::kEnableGPUServiceLogging, | 925 switches::kEnableGPUServiceLogging, |
| 926 switches::kEnableGPUClientLogging, | 926 switches::kEnableGPUClientLogging, |
| 927 switches::kEnableGpuClientTracing, | 927 switches::kEnableGpuClientTracing, |
| 928 switches::kEnableGpuBenchmarking, | 928 switches::kEnableGpuBenchmarking, |
| 929 #if defined(OS_WIN) | 929 #if defined(OS_WIN) |
| 930 switches::kEnableHighResolutionTime, | 930 switches::kEnableHighResolutionTime, |
| 931 #endif | 931 #endif |
| 932 switches::kEnableMP3StreamParser, | 932 switches::kEnableMP3StreamParser, |
| 933 switches::kEnableMemoryBenchmarking, | 933 switches::kEnableMemoryBenchmarking, |
| 934 switches::kEnableOverlayFullscreenVideo, |
| 934 switches::kEnableOverlayScrollbars, | 935 switches::kEnableOverlayScrollbars, |
| 935 switches::kEnableSkiaBenchmarking, | 936 switches::kEnableSkiaBenchmarking, |
| 936 switches::kEnableLogging, | 937 switches::kEnableLogging, |
| 937 switches::kEnableSpeechSynthesis, | 938 switches::kEnableSpeechSynthesis, |
| 938 switches::kEnableTouchDragDrop, | 939 switches::kEnableTouchDragDrop, |
| 939 switches::kEnableTouchEditing, | 940 switches::kEnableTouchEditing, |
| 940 #if defined(ENABLE_WEBRTC) | 941 #if defined(ENABLE_WEBRTC) |
| 941 switches::kEnableWebRtcAecRecordings, | 942 switches::kEnableWebRtcAecRecordings, |
| 942 switches::kEnableWebRtcTcpServerSocket, | 943 switches::kEnableWebRtcTcpServerSocket, |
| 943 #endif | 944 #endif |
| (...skipping 854 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1798 // Skip widgets in other processes. | 1799 // Skip widgets in other processes. |
| 1799 if (widget->GetProcess()->GetID() != GetID()) | 1800 if (widget->GetProcess()->GetID() != GetID()) |
| 1800 continue; | 1801 continue; |
| 1801 | 1802 |
| 1802 RenderViewHost* rvh = RenderViewHost::From(widget); | 1803 RenderViewHost* rvh = RenderViewHost::From(widget); |
| 1803 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); | 1804 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); |
| 1804 } | 1805 } |
| 1805 } | 1806 } |
| 1806 | 1807 |
| 1807 } // namespace content | 1808 } // namespace content |
| OLD | NEW |