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