| 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 1384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1395 switches::kDisableAcceleratedVideoDecode, | 1395 switches::kDisableAcceleratedVideoDecode, |
| 1396 switches::kDisableBlinkFeatures, | 1396 switches::kDisableBlinkFeatures, |
| 1397 switches::kDisableBreakpad, | 1397 switches::kDisableBreakpad, |
| 1398 switches::kDisableCompositorAnimationTimelines, | 1398 switches::kDisableCompositorAnimationTimelines, |
| 1399 switches::kDisablePreferCompositingToLCDText, | 1399 switches::kDisablePreferCompositingToLCDText, |
| 1400 switches::kDisableDatabases, | 1400 switches::kDisableDatabases, |
| 1401 switches::kDisableDelayAgnosticAec, | 1401 switches::kDisableDelayAgnosticAec, |
| 1402 switches::kDisableDirectNPAPIRequests, | 1402 switches::kDisableDirectNPAPIRequests, |
| 1403 switches::kDisableDisplayList2dCanvas, | 1403 switches::kDisableDisplayList2dCanvas, |
| 1404 switches::kDisableDistanceFieldText, | 1404 switches::kDisableDistanceFieldText, |
| 1405 switches::kDisableEncryptedMedia, | |
| 1406 switches::kDisableFileSystem, | 1405 switches::kDisableFileSystem, |
| 1407 switches::kDisableGestureRequirementForMediaPlayback, | 1406 switches::kDisableGestureRequirementForMediaPlayback, |
| 1408 switches::kDisableGestureRequirementForPresentation, | 1407 switches::kDisableGestureRequirementForPresentation, |
| 1409 switches::kDisableGpuCompositing, | 1408 switches::kDisableGpuCompositing, |
| 1410 switches::kDisableGpuMemoryBufferVideoFrames, | 1409 switches::kDisableGpuMemoryBufferVideoFrames, |
| 1411 switches::kDisableGpuVsync, | 1410 switches::kDisableGpuVsync, |
| 1412 switches::kDisableLowResTiling, | 1411 switches::kDisableLowResTiling, |
| 1413 switches::kDisableHistogramCustomizer, | 1412 switches::kDisableHistogramCustomizer, |
| 1414 switches::kDisableIconNtp, | 1413 switches::kDisableIconNtp, |
| 1415 switches::kDisableLCDText, | 1414 switches::kDisableLCDText, |
| 1416 switches::kDisableLocalStorage, | 1415 switches::kDisableLocalStorage, |
| 1417 switches::kDisableLogging, | 1416 switches::kDisableLogging, |
| 1418 switches::kDisableMediaSource, | |
| 1419 switches::kDisableMediaSuspend, | 1417 switches::kDisableMediaSuspend, |
| 1420 switches::kDisableMojoChannel, | 1418 switches::kDisableMojoChannel, |
| 1421 switches::kDisableNotifications, | 1419 switches::kDisableNotifications, |
| 1422 switches::kDisableOverlayScrollbar, | 1420 switches::kDisableOverlayScrollbar, |
| 1423 switches::kDisablePermissionsAPI, | 1421 switches::kDisablePermissionsAPI, |
| 1424 switches::kDisablePresentationAPI, | 1422 switches::kDisablePresentationAPI, |
| 1425 switches::kDisablePinch, | 1423 switches::kDisablePinch, |
| 1426 switches::kDisableRGBA4444Textures, | 1424 switches::kDisableRGBA4444Textures, |
| 1427 switches::kDisableRTCSmoothnessAlgorithm, | 1425 switches::kDisableRTCSmoothnessAlgorithm, |
| 1428 switches::kDisableSeccompFilterSandbox, | 1426 switches::kDisableSeccompFilterSandbox, |
| (...skipping 1374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2803 | 2801 |
| 2804 // Skip widgets in other processes. | 2802 // Skip widgets in other processes. |
| 2805 if (rvh->GetProcess()->GetID() != GetID()) | 2803 if (rvh->GetProcess()->GetID() != GetID()) |
| 2806 continue; | 2804 continue; |
| 2807 | 2805 |
| 2808 rvh->OnWebkitPreferencesChanged(); | 2806 rvh->OnWebkitPreferencesChanged(); |
| 2809 } | 2807 } |
| 2810 } | 2808 } |
| 2811 | 2809 |
| 2812 } // namespace content | 2810 } // namespace content |
| OLD | NEW |