| 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 1496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1507 switches::kProfilerTiming, | 1507 switches::kProfilerTiming, |
| 1508 switches::kReducedReferrerGranularity, | 1508 switches::kReducedReferrerGranularity, |
| 1509 switches::kReduceSecurityForTesting, | 1509 switches::kReduceSecurityForTesting, |
| 1510 switches::kRegisterPepperPlugins, | 1510 switches::kRegisterPepperPlugins, |
| 1511 switches::kRendererStartupDialog, | 1511 switches::kRendererStartupDialog, |
| 1512 switches::kRootLayerScrolls, | 1512 switches::kRootLayerScrolls, |
| 1513 switches::kShowPaintRects, | 1513 switches::kShowPaintRects, |
| 1514 switches::kSitePerProcess, | 1514 switches::kSitePerProcess, |
| 1515 switches::kStatsCollectionController, | 1515 switches::kStatsCollectionController, |
| 1516 switches::kTestType, | 1516 switches::kTestType, |
| 1517 switches::kTopDocumentIsolation, |
| 1517 switches::kTouchEvents, | 1518 switches::kTouchEvents, |
| 1518 switches::kTouchTextSelectionStrategy, | 1519 switches::kTouchTextSelectionStrategy, |
| 1519 switches::kTraceConfigFile, | 1520 switches::kTraceConfigFile, |
| 1520 switches::kTraceToConsole, | 1521 switches::kTraceToConsole, |
| 1521 switches::kUseCrossProcessFramesForGuests, | 1522 switches::kUseCrossProcessFramesForGuests, |
| 1522 switches::kUseFakeUIForMediaStream, | 1523 switches::kUseFakeUIForMediaStream, |
| 1523 // This flag needs to be propagated to the renderer process for | 1524 // This flag needs to be propagated to the renderer process for |
| 1524 // --in-process-webgl. | 1525 // --in-process-webgl. |
| 1525 switches::kUseGL, | 1526 switches::kUseGL, |
| 1526 switches::kUseMobileUserAgent, | 1527 switches::kUseMobileUserAgent, |
| (...skipping 1276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2803 | 2804 |
| 2804 // Skip widgets in other processes. | 2805 // Skip widgets in other processes. |
| 2805 if (rvh->GetProcess()->GetID() != GetID()) | 2806 if (rvh->GetProcess()->GetID() != GetID()) |
| 2806 continue; | 2807 continue; |
| 2807 | 2808 |
| 2808 rvh->OnWebkitPreferencesChanged(); | 2809 rvh->OnWebkitPreferencesChanged(); |
| 2809 } | 2810 } |
| 2810 } | 2811 } |
| 2811 | 2812 |
| 2812 } // namespace content | 2813 } // namespace content |
| OLD | NEW |