| 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 1480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1491 #if defined(OS_ANDROID) | 1491 #if defined(OS_ANDROID) |
| 1492 switches::kDisableUnifiedMediaPipeline, | 1492 switches::kDisableUnifiedMediaPipeline, |
| 1493 switches::kRendererWaitForJavaDebugger, | 1493 switches::kRendererWaitForJavaDebugger, |
| 1494 #endif | 1494 #endif |
| 1495 #if defined(OS_MACOSX) | 1495 #if defined(OS_MACOSX) |
| 1496 // Allow this to be set when invoking the browser and relayed along. | 1496 // Allow this to be set when invoking the browser and relayed along. |
| 1497 switches::kEnableSandboxLogging, | 1497 switches::kEnableSandboxLogging, |
| 1498 #endif | 1498 #endif |
| 1499 #if defined(OS_WIN) | 1499 #if defined(OS_WIN) |
| 1500 switches::kDisableWin32kRendererLockDown, | 1500 switches::kDisableWin32kRendererLockDown, |
| 1501 switches::kEnableWin7WebRtcHWH264Decoding, |
| 1501 switches::kTrySupportedChannelLayouts, | 1502 switches::kTrySupportedChannelLayouts, |
| 1502 switches::kTraceExportEventsToETW, | 1503 switches::kTraceExportEventsToETW, |
| 1503 #endif | 1504 #endif |
| 1504 #if defined(USE_OZONE) | 1505 #if defined(USE_OZONE) |
| 1505 switches::kOzonePlatform, | 1506 switches::kOzonePlatform, |
| 1506 #endif | 1507 #endif |
| 1507 #if defined(OS_CHROMEOS) | 1508 #if defined(OS_CHROMEOS) |
| 1508 switches::kDisableVaapiAcceleratedVideoEncode, | 1509 switches::kDisableVaapiAcceleratedVideoEncode, |
| 1509 #endif | 1510 #endif |
| 1510 }; | 1511 }; |
| (...skipping 1241 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 |