| 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 1478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1489 switches::kEnableWebGLDraftExtensions, | 1489 switches::kEnableWebGLDraftExtensions, |
| 1490 switches::kEnableWebGLImageChromium, | 1490 switches::kEnableWebGLImageChromium, |
| 1491 switches::kEnableWebVR, | 1491 switches::kEnableWebVR, |
| 1492 switches::kEnableWheelGestures, | 1492 switches::kEnableWheelGestures, |
| 1493 switches::kExplicitlyAllowedPorts, | 1493 switches::kExplicitlyAllowedPorts, |
| 1494 switches::kForceDeviceScaleFactor, | 1494 switches::kForceDeviceScaleFactor, |
| 1495 switches::kForceDisplayList2dCanvas, | 1495 switches::kForceDisplayList2dCanvas, |
| 1496 switches::kForceOverlayFullscreenVideo, | 1496 switches::kForceOverlayFullscreenVideo, |
| 1497 switches::kFullMemoryCrashReport, | 1497 switches::kFullMemoryCrashReport, |
| 1498 switches::kInertVisualViewport, | 1498 switches::kInertVisualViewport, |
| 1499 switches::kIsolateTopDocument, |
| 1499 switches::kIPCConnectionTimeout, | 1500 switches::kIPCConnectionTimeout, |
| 1500 switches::kJavaScriptFlags, | 1501 switches::kJavaScriptFlags, |
| 1501 switches::kLoggingLevel, | 1502 switches::kLoggingLevel, |
| 1502 switches::kMainFrameResizesAreOrientationChanges, | 1503 switches::kMainFrameResizesAreOrientationChanges, |
| 1503 switches::kMaxUntiledLayerWidth, | 1504 switches::kMaxUntiledLayerWidth, |
| 1504 switches::kMaxUntiledLayerHeight, | 1505 switches::kMaxUntiledLayerHeight, |
| 1505 switches::kMemoryMetrics, | 1506 switches::kMemoryMetrics, |
| 1506 switches::kMojoLocalStorage, | 1507 switches::kMojoLocalStorage, |
| 1507 switches::kNoReferrers, | 1508 switches::kNoReferrers, |
| 1508 switches::kNoSandbox, | 1509 switches::kNoSandbox, |
| (...skipping 1310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2819 | 2820 |
| 2820 // Skip widgets in other processes. | 2821 // Skip widgets in other processes. |
| 2821 if (rvh->GetProcess()->GetID() != GetID()) | 2822 if (rvh->GetProcess()->GetID() != GetID()) |
| 2822 continue; | 2823 continue; |
| 2823 | 2824 |
| 2824 rvh->OnWebkitPreferencesChanged(); | 2825 rvh->OnWebkitPreferencesChanged(); |
| 2825 } | 2826 } |
| 2826 } | 2827 } |
| 2827 | 2828 |
| 2828 } // namespace content | 2829 } // namespace content |
| OLD | NEW |