| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 871 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 882 switches::kEnableGpuBenchmarking, | 882 switches::kEnableGpuBenchmarking, |
| 883 switches::kEnableMemoryBenchmarking, | 883 switches::kEnableMemoryBenchmarking, |
| 884 switches::kEnableSkiaBenchmarking, | 884 switches::kEnableSkiaBenchmarking, |
| 885 switches::kEnableLogging, | 885 switches::kEnableLogging, |
| 886 switches::kEnableSpeechSynthesis, | 886 switches::kEnableSpeechSynthesis, |
| 887 switches::kEnableTouchDragDrop, | 887 switches::kEnableTouchDragDrop, |
| 888 switches::kEnableTouchEditing, | 888 switches::kEnableTouchEditing, |
| 889 switches::kEnableWebPInAcceptHeader, | 889 switches::kEnableWebPInAcceptHeader, |
| 890 #if defined(ENABLE_WEBRTC) | 890 #if defined(ENABLE_WEBRTC) |
| 891 switches::kEnableWebRtcAecRecordings, | 891 switches::kEnableWebRtcAecRecordings, |
| 892 switches::kEnableWebRTCHWDecoding, |
| 892 #endif | 893 #endif |
| 893 #if defined(ANDROID) && !defined(GOOGLE_TV) | 894 #if defined(ANDROID) && !defined(GOOGLE_TV) |
| 894 switches::kEnableWebKitMediaSource, | 895 switches::kEnableWebKitMediaSource, |
| 895 #else | 896 #else |
| 896 switches::kDisableWebKitMediaSource, | 897 switches::kDisableWebKitMediaSource, |
| 897 #endif | 898 #endif |
| 898 switches::kEnableOverscrollNotifications, | 899 switches::kEnableOverscrollNotifications, |
| 899 switches::kEnableStrictSiteIsolation, | 900 switches::kEnableStrictSiteIsolation, |
| 900 switches::kDisableFullScreen, | 901 switches::kDisableFullScreen, |
| 901 switches::kEnableNewDialogStyle, | 902 switches::kEnableNewDialogStyle, |
| (...skipping 892 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1794 continue; | 1795 continue; |
| 1795 | 1796 |
| 1796 RenderViewHost* rvh = | 1797 RenderViewHost* rvh = |
| 1797 RenderViewHost::From(const_cast<RenderWidgetHost*>(widget)); | 1798 RenderViewHost::From(const_cast<RenderWidgetHost*>(widget)); |
| 1798 | 1799 |
| 1799 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); | 1800 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); |
| 1800 } | 1801 } |
| 1801 } | 1802 } |
| 1802 | 1803 |
| 1803 } // namespace content | 1804 } // namespace content |
| OLD | NEW |