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 1076 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1087 switches::kVideoThreads, | 1087 switches::kVideoThreads, |
1088 switches::kVModule, | 1088 switches::kVModule, |
1089 switches::kWebCoreLogChannels, | 1089 switches::kWebCoreLogChannels, |
1090 switches::kWebGLCommandBufferSizeKb, | 1090 switches::kWebGLCommandBufferSizeKb, |
1091 // Please keep these in alphabetical order. Compositor switches here should | 1091 // Please keep these in alphabetical order. Compositor switches here should |
1092 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. | 1092 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. |
1093 cc::switches::kBackgroundColorInsteadOfCheckerboard, | 1093 cc::switches::kBackgroundColorInsteadOfCheckerboard, |
1094 cc::switches::kCompositeToMailbox, | 1094 cc::switches::kCompositeToMailbox, |
1095 cc::switches::kDisableCompositedAntialiasing, | 1095 cc::switches::kDisableCompositedAntialiasing, |
1096 cc::switches::kDisableCompositorTouchHitTesting, | 1096 cc::switches::kDisableCompositorTouchHitTesting, |
| 1097 cc::switches::kDisableGPURasterization, |
1097 cc::switches::kDisableImplSidePainting, | 1098 cc::switches::kDisableImplSidePainting, |
1098 cc::switches::kDisableLCDText, | 1099 cc::switches::kDisableLCDText, |
1099 cc::switches::kDisableMapImage, | 1100 cc::switches::kDisableMapImage, |
1100 cc::switches::kDisableThreadedAnimation, | 1101 cc::switches::kDisableThreadedAnimation, |
1101 cc::switches::kEnableGPURasterization, | 1102 cc::switches::kEnableGPURasterization, |
1102 cc::switches::kEnableImplSidePainting, | 1103 cc::switches::kEnableImplSidePainting, |
1103 cc::switches::kEnableLCDText, | 1104 cc::switches::kEnableLCDText, |
1104 cc::switches::kEnableMapImage, | 1105 cc::switches::kEnableMapImage, |
1105 cc::switches::kEnablePartialSwap, | 1106 cc::switches::kEnablePartialSwap, |
1106 cc::switches::kEnablePerTilePainting, | 1107 cc::switches::kEnablePerTilePainting, |
(...skipping 925 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2032 return; | 2033 return; |
2033 Send(new MediaStreamMsg_EnableAecDump(file_for_transit)); | 2034 Send(new MediaStreamMsg_EnableAecDump(file_for_transit)); |
2034 } | 2035 } |
2035 | 2036 |
2036 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() { | 2037 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() { |
2037 Send(new MediaStreamMsg_DisableAecDump()); | 2038 Send(new MediaStreamMsg_DisableAecDump()); |
2038 } | 2039 } |
2039 #endif | 2040 #endif |
2040 | 2041 |
2041 } // namespace content | 2042 } // namespace content |
OLD | NEW |