| 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 1382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1393 switches::kAudioBufferSize, | 1393 switches::kAudioBufferSize, |
| 1394 switches::kBlinkPlatformLogChannels, | 1394 switches::kBlinkPlatformLogChannels, |
| 1395 switches::kBlinkSettings, | 1395 switches::kBlinkSettings, |
| 1396 switches::kDefaultTileWidth, | 1396 switches::kDefaultTileWidth, |
| 1397 switches::kDefaultTileHeight, | 1397 switches::kDefaultTileHeight, |
| 1398 switches::kDisable3DAPIs, | 1398 switches::kDisable3DAPIs, |
| 1399 switches::kDisableAcceleratedJpegDecoding, | 1399 switches::kDisableAcceleratedJpegDecoding, |
| 1400 switches::kDisableAcceleratedVideoDecode, | 1400 switches::kDisableAcceleratedVideoDecode, |
| 1401 switches::kDisableBlinkFeatures, | 1401 switches::kDisableBlinkFeatures, |
| 1402 switches::kDisableBreakpad, | 1402 switches::kDisableBreakpad, |
| 1403 switches::kDisableCompositorAnimationTimelines, | |
| 1404 switches::kDisablePreferCompositingToLCDText, | 1403 switches::kDisablePreferCompositingToLCDText, |
| 1405 switches::kDisableDatabases, | 1404 switches::kDisableDatabases, |
| 1406 switches::kDisableDelayAgnosticAec, | 1405 switches::kDisableDelayAgnosticAec, |
| 1407 switches::kDisableDirectNPAPIRequests, | 1406 switches::kDisableDirectNPAPIRequests, |
| 1408 switches::kDisableDisplayList2dCanvas, | 1407 switches::kDisableDisplayList2dCanvas, |
| 1409 switches::kDisableDistanceFieldText, | 1408 switches::kDisableDistanceFieldText, |
| 1410 switches::kDisableEncryptedMedia, | 1409 switches::kDisableEncryptedMedia, |
| 1411 switches::kDisableFileSystem, | 1410 switches::kDisableFileSystem, |
| 1412 switches::kDisableGestureRequirementForMediaPlayback, | 1411 switches::kDisableGestureRequirementForMediaPlayback, |
| 1413 switches::kDisableGestureRequirementForPresentation, | 1412 switches::kDisableGestureRequirementForPresentation, |
| (...skipping 1392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2806 | 2805 |
| 2807 // Skip widgets in other processes. | 2806 // Skip widgets in other processes. |
| 2808 if (rvh->GetProcess()->GetID() != GetID()) | 2807 if (rvh->GetProcess()->GetID() != GetID()) |
| 2809 continue; | 2808 continue; |
| 2810 | 2809 |
| 2811 rvh->OnWebkitPreferencesChanged(); | 2810 rvh->OnWebkitPreferencesChanged(); |
| 2812 } | 2811 } |
| 2813 } | 2812 } |
| 2814 | 2813 |
| 2815 } // namespace content | 2814 } // namespace content |
| OLD | NEW |