| 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 1503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1514 switches::kTraceConfigFile, | 1514 switches::kTraceConfigFile, |
| 1515 switches::kTraceToConsole, | 1515 switches::kTraceToConsole, |
| 1516 switches::kUseCrossProcessFramesForGuests, | 1516 switches::kUseCrossProcessFramesForGuests, |
| 1517 switches::kUseFakeUIForMediaStream, | 1517 switches::kUseFakeUIForMediaStream, |
| 1518 // This flag needs to be propagated to the renderer process for | 1518 // This flag needs to be propagated to the renderer process for |
| 1519 // --in-process-webgl. | 1519 // --in-process-webgl. |
| 1520 switches::kUseGL, | 1520 switches::kUseGL, |
| 1521 switches::kUseMobileUserAgent, | 1521 switches::kUseMobileUserAgent, |
| 1522 switches::kUseRemoteCompositing, | 1522 switches::kUseRemoteCompositing, |
| 1523 switches::kV, | 1523 switches::kV, |
| 1524 switches::kUseFFVP9, |
| 1525 switches::kSkipVpxLoopFilter, |
| 1526 switches::kEnableVpxFrameThreading, |
| 1524 switches::kVideoThreads, | 1527 switches::kVideoThreads, |
| 1525 switches::kVideoUnderflowThresholdMs, | 1528 switches::kVideoUnderflowThresholdMs, |
| 1526 switches::kVModule, | 1529 switches::kVModule, |
| 1527 // Please keep these in alphabetical order. Compositor switches here should | 1530 // Please keep these in alphabetical order. Compositor switches here should |
| 1528 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. | 1531 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. |
| 1529 cc::switches::kDisableCachedPictureRaster, | 1532 cc::switches::kDisableCachedPictureRaster, |
| 1530 cc::switches::kDisableCompositedAntialiasing, | 1533 cc::switches::kDisableCompositedAntialiasing, |
| 1531 cc::switches::kDisableMainFrameBeforeActivation, | 1534 cc::switches::kDisableMainFrameBeforeActivation, |
| 1532 cc::switches::kDisableThreadedAnimation, | 1535 cc::switches::kDisableThreadedAnimation, |
| 1533 cc::switches::kEnableBeginFrameScheduling, | 1536 cc::switches::kEnableBeginFrameScheduling, |
| (...skipping 1291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2825 | 2828 |
| 2826 // Skip widgets in other processes. | 2829 // Skip widgets in other processes. |
| 2827 if (rvh->GetProcess()->GetID() != GetID()) | 2830 if (rvh->GetProcess()->GetID() != GetID()) |
| 2828 continue; | 2831 continue; |
| 2829 | 2832 |
| 2830 rvh->OnWebkitPreferencesChanged(); | 2833 rvh->OnWebkitPreferencesChanged(); |
| 2831 } | 2834 } |
| 2832 } | 2835 } |
| 2833 | 2836 |
| 2834 } // namespace content | 2837 } // namespace content |
| OLD | NEW |