| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 1404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1415 switches::kEnableDisplayList2dCanvas, | 1415 switches::kEnableDisplayList2dCanvas, |
| 1416 switches::kEnableDistanceFieldText, | 1416 switches::kEnableDistanceFieldText, |
| 1417 switches::kEnableExperimentalCanvasFeatures, | 1417 switches::kEnableExperimentalCanvasFeatures, |
| 1418 switches::kEnableExperimentalWebPlatformFeatures, | 1418 switches::kEnableExperimentalWebPlatformFeatures, |
| 1419 switches::kEnableHeapProfiling, | 1419 switches::kEnableHeapProfiling, |
| 1420 switches::kEnableGPUClientLogging, | 1420 switches::kEnableGPUClientLogging, |
| 1421 switches::kEnableGpuClientTracing, | 1421 switches::kEnableGpuClientTracing, |
| 1422 switches::kEnableGpuMemoryBufferVideoFrames, | 1422 switches::kEnableGpuMemoryBufferVideoFrames, |
| 1423 switches::kEnableGPUServiceLogging, | 1423 switches::kEnableGPUServiceLogging, |
| 1424 switches::kEnableIconNtp, | 1424 switches::kEnableIconNtp, |
| 1425 switches::kEnableLinkDisambiguationPopup, | |
| 1426 switches::kEnableLowResTiling, | 1425 switches::kEnableLowResTiling, |
| 1427 switches::kEnableMediaSuspend, | 1426 switches::kEnableMediaSuspend, |
| 1428 switches::kEnableMojoChannel, | 1427 switches::kEnableMojoChannel, |
| 1429 switches::kEnableInbandTextTracks, | 1428 switches::kEnableInbandTextTracks, |
| 1430 switches::kEnableLCDText, | 1429 switches::kEnableLCDText, |
| 1431 switches::kEnableLogging, | 1430 switches::kEnableLogging, |
| 1432 switches::kEnableMemoryBenchmarking, | 1431 switches::kEnableMemoryBenchmarking, |
| 1433 switches::kEnableNetworkInformation, | 1432 switches::kEnableNetworkInformation, |
| 1434 switches::kEnableOverlayScrollbar, | 1433 switches::kEnableOverlayScrollbar, |
| 1435 switches::kEnablePinch, | 1434 switches::kEnablePinch, |
| (...skipping 1361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2797 | 2796 |
| 2798 // Skip widgets in other processes. | 2797 // Skip widgets in other processes. |
| 2799 if (rvh->GetProcess()->GetID() != GetID()) | 2798 if (rvh->GetProcess()->GetID() != GetID()) |
| 2800 continue; | 2799 continue; |
| 2801 | 2800 |
| 2802 rvh->OnWebkitPreferencesChanged(); | 2801 rvh->OnWebkitPreferencesChanged(); |
| 2803 } | 2802 } |
| 2804 } | 2803 } |
| 2805 | 2804 |
| 2806 } // namespace content | 2805 } // namespace content |
| OLD | NEW |