| 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 1419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1430 switches::kDisableSpeechAPI, | 1430 switches::kDisableSpeechAPI, |
| 1431 switches::kDisableThreadedCompositing, | 1431 switches::kDisableThreadedCompositing, |
| 1432 switches::kDisableThreadedScrolling, | 1432 switches::kDisableThreadedScrolling, |
| 1433 switches::kDisableTouchAdjustment, | 1433 switches::kDisableTouchAdjustment, |
| 1434 switches::kDisableTouchDragDrop, | 1434 switches::kDisableTouchDragDrop, |
| 1435 switches::kDisableV8IdleTasks, | 1435 switches::kDisableV8IdleTasks, |
| 1436 switches::kDisableWheelGestures, | 1436 switches::kDisableWheelGestures, |
| 1437 switches::kDomAutomationController, | 1437 switches::kDomAutomationController, |
| 1438 switches::kEnableBlinkFeatures, | 1438 switches::kEnableBlinkFeatures, |
| 1439 switches::kEnableBrowserSideNavigation, | 1439 switches::kEnableBrowserSideNavigation, |
| 1440 switches::kEnableCredentialManagerAPI, |
| 1440 switches::kEnableDisplayList2dCanvas, | 1441 switches::kEnableDisplayList2dCanvas, |
| 1441 switches::kEnableDistanceFieldText, | 1442 switches::kEnableDistanceFieldText, |
| 1442 switches::kEnableExperimentalCanvasFeatures, | 1443 switches::kEnableExperimentalCanvasFeatures, |
| 1443 switches::kEnableExperimentalWebPlatformFeatures, | 1444 switches::kEnableExperimentalWebPlatformFeatures, |
| 1444 switches::kEnableHeapProfiling, | 1445 switches::kEnableHeapProfiling, |
| 1445 switches::kEnableGPUClientLogging, | 1446 switches::kEnableGPUClientLogging, |
| 1446 switches::kEnableGpuClientTracing, | 1447 switches::kEnableGpuClientTracing, |
| 1447 switches::kEnableGpuMemoryBufferVideoFrames, | 1448 switches::kEnableGpuMemoryBufferVideoFrames, |
| 1448 switches::kEnableGPUServiceLogging, | 1449 switches::kEnableGPUServiceLogging, |
| 1449 switches::kEnableIconNtp, | 1450 switches::kEnableIconNtp, |
| (...skipping 1366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2816 | 2817 |
| 2817 // Skip widgets in other processes. | 2818 // Skip widgets in other processes. |
| 2818 if (rvh->GetProcess()->GetID() != GetID()) | 2819 if (rvh->GetProcess()->GetID() != GetID()) |
| 2819 continue; | 2820 continue; |
| 2820 | 2821 |
| 2821 rvh->OnWebkitPreferencesChanged(); | 2822 rvh->OnWebkitPreferencesChanged(); |
| 2822 } | 2823 } |
| 2823 } | 2824 } |
| 2824 | 2825 |
| 2825 } // namespace content | 2826 } // namespace content |
| OLD | NEW |