| 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 1380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1391 switches::kDefaultTileWidth, | 1391 switches::kDefaultTileWidth, |
| 1392 switches::kDefaultTileHeight, | 1392 switches::kDefaultTileHeight, |
| 1393 switches::kDisable2dCanvasImageChromium, | 1393 switches::kDisable2dCanvasImageChromium, |
| 1394 switches::kDisable3DAPIs, | 1394 switches::kDisable3DAPIs, |
| 1395 switches::kDisableAcceleratedJpegDecoding, | 1395 switches::kDisableAcceleratedJpegDecoding, |
| 1396 switches::kDisableAcceleratedVideoDecode, | 1396 switches::kDisableAcceleratedVideoDecode, |
| 1397 switches::kDisableBlinkFeatures, | 1397 switches::kDisableBlinkFeatures, |
| 1398 switches::kDisableBreakpad, | 1398 switches::kDisableBreakpad, |
| 1399 switches::kDisablePreferCompositingToLCDText, | 1399 switches::kDisablePreferCompositingToLCDText, |
| 1400 switches::kDisableDatabases, | 1400 switches::kDisableDatabases, |
| 1401 switches::kDisableDirectNPAPIRequests, | |
| 1402 switches::kDisableDisplayList2dCanvas, | 1401 switches::kDisableDisplayList2dCanvas, |
| 1403 switches::kDisableDistanceFieldText, | 1402 switches::kDisableDistanceFieldText, |
| 1404 switches::kDisableFileSystem, | 1403 switches::kDisableFileSystem, |
| 1405 switches::kDisableGestureRequirementForMediaPlayback, | 1404 switches::kDisableGestureRequirementForMediaPlayback, |
| 1406 switches::kDisableGestureRequirementForPresentation, | 1405 switches::kDisableGestureRequirementForPresentation, |
| 1407 switches::kDisableGpuCompositing, | 1406 switches::kDisableGpuCompositing, |
| 1408 switches::kDisableGpuMemoryBufferVideoFrames, | 1407 switches::kDisableGpuMemoryBufferVideoFrames, |
| 1409 switches::kDisableGpuVsync, | 1408 switches::kDisableGpuVsync, |
| 1410 switches::kDisableLowResTiling, | 1409 switches::kDisableLowResTiling, |
| 1411 switches::kDisableHistogramCustomizer, | 1410 switches::kDisableHistogramCustomizer, |
| (...skipping 1380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2792 | 2791 |
| 2793 // Skip widgets in other processes. | 2792 // Skip widgets in other processes. |
| 2794 if (rvh->GetProcess()->GetID() != GetID()) | 2793 if (rvh->GetProcess()->GetID() != GetID()) |
| 2795 continue; | 2794 continue; |
| 2796 | 2795 |
| 2797 rvh->OnWebkitPreferencesChanged(); | 2796 rvh->OnWebkitPreferencesChanged(); |
| 2798 } | 2797 } |
| 2799 } | 2798 } |
| 2800 | 2799 |
| 2801 } // namespace content | 2800 } // namespace content |
| OLD | NEW |