| 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 1428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1439 switches::kTraceConfigFile, | 1439 switches::kTraceConfigFile, |
| 1440 switches::kTraceToConsole, | 1440 switches::kTraceToConsole, |
| 1441 switches::kUseCrossProcessFramesForGuests, | 1441 switches::kUseCrossProcessFramesForGuests, |
| 1442 switches::kUseFakeUIForMediaStream, | 1442 switches::kUseFakeUIForMediaStream, |
| 1443 // This flag needs to be propagated to the renderer process for | 1443 // This flag needs to be propagated to the renderer process for |
| 1444 // --in-process-webgl. | 1444 // --in-process-webgl. |
| 1445 switches::kUseGL, | 1445 switches::kUseGL, |
| 1446 switches::kUseMobileUserAgent, | 1446 switches::kUseMobileUserAgent, |
| 1447 switches::kUseRemoteCompositing, | 1447 switches::kUseRemoteCompositing, |
| 1448 switches::kV, | 1448 switches::kV, |
| 1449 switches::kV8CacheStrategiesForCacheStorage, |
| 1449 switches::kVideoThreads, | 1450 switches::kVideoThreads, |
| 1450 switches::kVideoUnderflowThresholdMs, | 1451 switches::kVideoUnderflowThresholdMs, |
| 1451 switches::kVModule, | 1452 switches::kVModule, |
| 1452 // Please keep these in alphabetical order. Compositor switches here should | 1453 // Please keep these in alphabetical order. Compositor switches here should |
| 1453 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. | 1454 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. |
| 1454 cc::switches::kDisableCachedPictureRaster, | 1455 cc::switches::kDisableCachedPictureRaster, |
| 1455 cc::switches::kDisableCompositedAntialiasing, | 1456 cc::switches::kDisableCompositedAntialiasing, |
| 1456 cc::switches::kDisableMainFrameBeforeActivation, | 1457 cc::switches::kDisableMainFrameBeforeActivation, |
| 1457 cc::switches::kDisableThreadedAnimation, | 1458 cc::switches::kDisableThreadedAnimation, |
| 1458 cc::switches::kEnableBeginFrameScheduling, | 1459 cc::switches::kEnableBeginFrameScheduling, |
| (...skipping 1293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2752 | 2753 |
| 2753 // Skip widgets in other processes. | 2754 // Skip widgets in other processes. |
| 2754 if (rvh->GetProcess()->GetID() != GetID()) | 2755 if (rvh->GetProcess()->GetID() != GetID()) |
| 2755 continue; | 2756 continue; |
| 2756 | 2757 |
| 2757 rvh->OnWebkitPreferencesChanged(); | 2758 rvh->OnWebkitPreferencesChanged(); |
| 2758 } | 2759 } |
| 2759 } | 2760 } |
| 2760 | 2761 |
| 2761 } // namespace content | 2762 } // namespace content |
| OLD | NEW |