| 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 1412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1423 switches::kDisableSpeechAPI, | 1423 switches::kDisableSpeechAPI, |
| 1424 switches::kDisableThreadedCompositing, | 1424 switches::kDisableThreadedCompositing, |
| 1425 switches::kDisableThreadedScrolling, | 1425 switches::kDisableThreadedScrolling, |
| 1426 switches::kDisableTouchAdjustment, | 1426 switches::kDisableTouchAdjustment, |
| 1427 switches::kDisableTouchDragDrop, | 1427 switches::kDisableTouchDragDrop, |
| 1428 switches::kDisableV8IdleTasks, | 1428 switches::kDisableV8IdleTasks, |
| 1429 switches::kDisableWheelGestures, | 1429 switches::kDisableWheelGestures, |
| 1430 switches::kDomAutomationController, | 1430 switches::kDomAutomationController, |
| 1431 switches::kEnableBlinkFeatures, | 1431 switches::kEnableBlinkFeatures, |
| 1432 switches::kEnableBrowserSideNavigation, | 1432 switches::kEnableBrowserSideNavigation, |
| 1433 switches::kEnableCredentialManagerAPI, | |
| 1434 switches::kEnableDisplayList2dCanvas, | 1433 switches::kEnableDisplayList2dCanvas, |
| 1435 switches::kEnableDistanceFieldText, | 1434 switches::kEnableDistanceFieldText, |
| 1436 switches::kEnableExperimentalCanvasFeatures, | 1435 switches::kEnableExperimentalCanvasFeatures, |
| 1437 switches::kEnableExperimentalWebPlatformFeatures, | 1436 switches::kEnableExperimentalWebPlatformFeatures, |
| 1438 switches::kEnableHeapProfiling, | 1437 switches::kEnableHeapProfiling, |
| 1439 switches::kEnableGPUClientLogging, | 1438 switches::kEnableGPUClientLogging, |
| 1440 switches::kEnableGpuClientTracing, | 1439 switches::kEnableGpuClientTracing, |
| 1441 switches::kEnableGpuMemoryBufferVideoFrames, | 1440 switches::kEnableGpuMemoryBufferVideoFrames, |
| 1442 switches::kEnableGPUServiceLogging, | 1441 switches::kEnableGPUServiceLogging, |
| 1443 switches::kEnableIconNtp, | 1442 switches::kEnableIconNtp, |
| (...skipping 1350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2794 | 2793 |
| 2795 // Skip widgets in other processes. | 2794 // Skip widgets in other processes. |
| 2796 if (rvh->GetProcess()->GetID() != GetID()) | 2795 if (rvh->GetProcess()->GetID() != GetID()) |
| 2797 continue; | 2796 continue; |
| 2798 | 2797 |
| 2799 rvh->OnWebkitPreferencesChanged(); | 2798 rvh->OnWebkitPreferencesChanged(); |
| 2800 } | 2799 } |
| 2801 } | 2800 } |
| 2802 | 2801 |
| 2803 } // namespace content | 2802 } // namespace content |
| OLD | NEW |