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 965 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
976 switches::kDisableDatabases, | 976 switches::kDisableDatabases, |
977 switches::kDisableDeadlineScheduling, | 977 switches::kDisableDeadlineScheduling, |
978 switches::kDisableDelegatedRenderer, | 978 switches::kDisableDelegatedRenderer, |
979 switches::kDisableDesktopNotifications, | 979 switches::kDisableDesktopNotifications, |
980 switches::kDisableDeviceMotion, | 980 switches::kDisableDeviceMotion, |
981 switches::kDisableDeviceOrientation, | 981 switches::kDisableDeviceOrientation, |
982 switches::kDisableDirectNPAPIRequests, | 982 switches::kDisableDirectNPAPIRequests, |
983 switches::kDisableFileSystem, | 983 switches::kDisableFileSystem, |
984 switches::kDisableFiltersOverIPC, | 984 switches::kDisableFiltersOverIPC, |
985 switches::kDisableFullScreen, | 985 switches::kDisableFullScreen, |
986 switches::kDisableGeolocation, | |
987 switches::kDisableGpu, | 986 switches::kDisableGpu, |
988 switches::kDisableGpuCompositing, | 987 switches::kDisableGpuCompositing, |
989 switches::kDisableGpuVsync, | 988 switches::kDisableGpuVsync, |
990 switches::kDisableHistogramCustomizer, | 989 switches::kDisableHistogramCustomizer, |
991 switches::kDisableLayerSquashing, | 990 switches::kDisableLayerSquashing, |
992 switches::kDisableLocalStorage, | 991 switches::kDisableLocalStorage, |
993 switches::kDisableLogging, | 992 switches::kDisableLogging, |
994 switches::kDisableOpusPlayback, | 993 switches::kDisableOpusPlayback, |
995 switches::kDisableOverlayScrollbar, | 994 switches::kDisableOverlayScrollbar, |
996 switches::kDisablePinch, | 995 switches::kDisablePinch, |
(...skipping 1078 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2075 return; | 2074 return; |
2076 Send(new MediaStreamMsg_EnableAecDump(file_for_transit)); | 2075 Send(new MediaStreamMsg_EnableAecDump(file_for_transit)); |
2077 } | 2076 } |
2078 | 2077 |
2079 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() { | 2078 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() { |
2080 Send(new MediaStreamMsg_DisableAecDump()); | 2079 Send(new MediaStreamMsg_DisableAecDump()); |
2081 } | 2080 } |
2082 #endif | 2081 #endif |
2083 | 2082 |
2084 } // namespace content | 2083 } // namespace content |
OLD | NEW |