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 961 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
972 switches::kDisableCompositedScrollingForFrames, | 972 switches::kDisableCompositedScrollingForFrames, |
973 switches::kDisableCompositingForFixedPosition, | 973 switches::kDisableCompositingForFixedPosition, |
974 switches::kDisableCompositingForTransition, | 974 switches::kDisableCompositingForTransition, |
975 switches::kDisableDatabases, | 975 switches::kDisableDatabases, |
976 switches::kDisableDeadlineScheduling, | 976 switches::kDisableDeadlineScheduling, |
977 switches::kDisableDelegatedRenderer, | 977 switches::kDisableDelegatedRenderer, |
978 switches::kDisableDesktopNotifications, | 978 switches::kDisableDesktopNotifications, |
979 switches::kDisableDirectNPAPIRequests, | 979 switches::kDisableDirectNPAPIRequests, |
980 switches::kDisableFileSystem, | 980 switches::kDisableFileSystem, |
981 switches::kDisableFiltersOverIPC, | 981 switches::kDisableFiltersOverIPC, |
982 switches::kDisableFullScreen, | |
983 switches::kDisableGpu, | 982 switches::kDisableGpu, |
984 switches::kDisableGpuCompositing, | 983 switches::kDisableGpuCompositing, |
985 switches::kDisableGpuVsync, | 984 switches::kDisableGpuVsync, |
986 switches::kDisableHistogramCustomizer, | 985 switches::kDisableHistogramCustomizer, |
987 switches::kDisableLayerSquashing, | 986 switches::kDisableLayerSquashing, |
988 switches::kDisableLocalStorage, | 987 switches::kDisableLocalStorage, |
989 switches::kDisableLogging, | 988 switches::kDisableLogging, |
990 switches::kDisableOpusPlayback, | 989 switches::kDisableOpusPlayback, |
991 switches::kDisableOverlayScrollbar, | 990 switches::kDisableOverlayScrollbar, |
992 switches::kDisablePinch, | 991 switches::kDisablePinch, |
(...skipping 1079 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2072 return; | 2071 return; |
2073 Send(new MediaStreamMsg_EnableAecDump(file_for_transit)); | 2072 Send(new MediaStreamMsg_EnableAecDump(file_for_transit)); |
2074 } | 2073 } |
2075 | 2074 |
2076 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() { | 2075 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() { |
2077 Send(new MediaStreamMsg_DisableAecDump()); | 2076 Send(new MediaStreamMsg_DisableAecDump()); |
2078 } | 2077 } |
2079 #endif | 2078 #endif |
2080 | 2079 |
2081 } // namespace content | 2080 } // namespace content |
OLD | NEW |