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 1505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1516 switches::kTouchEvents, | 1516 switches::kTouchEvents, |
1517 switches::kTouchTextSelectionStrategy, | 1517 switches::kTouchTextSelectionStrategy, |
1518 switches::kTraceConfigFile, | 1518 switches::kTraceConfigFile, |
1519 switches::kTraceToConsole, | 1519 switches::kTraceToConsole, |
1520 switches::kUseCrossProcessFramesForGuests, | 1520 switches::kUseCrossProcessFramesForGuests, |
1521 switches::kUseFakeUIForMediaStream, | 1521 switches::kUseFakeUIForMediaStream, |
1522 // This flag needs to be propagated to the renderer process for | 1522 // This flag needs to be propagated to the renderer process for |
1523 // --in-process-webgl. | 1523 // --in-process-webgl. |
1524 switches::kUseGL, | 1524 switches::kUseGL, |
1525 switches::kUseMobileUserAgent, | 1525 switches::kUseMobileUserAgent, |
1526 switches::kUseNormalPriorityForTileTaskWorkerThreads, | |
1527 switches::kUseRemoteCompositing, | 1526 switches::kUseRemoteCompositing, |
1528 switches::kV, | 1527 switches::kV, |
1529 switches::kVideoThreads, | 1528 switches::kVideoThreads, |
1530 switches::kVideoUnderflowThresholdMs, | 1529 switches::kVideoUnderflowThresholdMs, |
1531 switches::kVModule, | 1530 switches::kVModule, |
1532 // Please keep these in alphabetical order. Compositor switches here should | 1531 // Please keep these in alphabetical order. Compositor switches here should |
1533 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. | 1532 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. |
1534 cc::switches::kDisableCachedPictureRaster, | 1533 cc::switches::kDisableCachedPictureRaster, |
1535 cc::switches::kDisableCompositedAntialiasing, | 1534 cc::switches::kDisableCompositedAntialiasing, |
1536 cc::switches::kDisableMainFrameBeforeActivation, | 1535 cc::switches::kDisableMainFrameBeforeActivation, |
(...skipping 1268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2805 | 2804 |
2806 // Skip widgets in other processes. | 2805 // Skip widgets in other processes. |
2807 if (rvh->GetProcess()->GetID() != GetID()) | 2806 if (rvh->GetProcess()->GetID() != GetID()) |
2808 continue; | 2807 continue; |
2809 | 2808 |
2810 rvh->OnWebkitPreferencesChanged(); | 2809 rvh->OnWebkitPreferencesChanged(); |
2811 } | 2810 } |
2812 } | 2811 } |
2813 | 2812 |
2814 } // namespace content | 2813 } // namespace content |
OLD | NEW |