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 1093 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1104 switches::kDisableLocalStorage, | 1104 switches::kDisableLocalStorage, |
1105 switches::kDisableLogging, | 1105 switches::kDisableLogging, |
1106 switches::kDisableMediaSource, | 1106 switches::kDisableMediaSource, |
1107 switches::kDisableOverlayScrollbar, | 1107 switches::kDisableOverlayScrollbar, |
1108 switches::kDisablePinch, | 1108 switches::kDisablePinch, |
1109 switches::kDisablePrefixedEncryptedMedia, | 1109 switches::kDisablePrefixedEncryptedMedia, |
1110 switches::kDisableSeccompFilterSandbox, | 1110 switches::kDisableSeccompFilterSandbox, |
1111 switches::kDisableSessionStorage, | 1111 switches::kDisableSessionStorage, |
1112 switches::kDisableSharedWorkers, | 1112 switches::kDisableSharedWorkers, |
1113 switches::kDisableThreadedCompositing, | 1113 switches::kDisableThreadedCompositing, |
| 1114 switches::kDisableThreadedScrolling, |
1114 switches::kDisableTouchAdjustment, | 1115 switches::kDisableTouchAdjustment, |
1115 switches::kDisableTouchDragDrop, | 1116 switches::kDisableTouchDragDrop, |
1116 switches::kDisableTouchEditing, | 1117 switches::kDisableTouchEditing, |
1117 switches::kDisableV8IdleNotificationAfterCommit, | 1118 switches::kDisableV8IdleNotificationAfterCommit, |
1118 switches::kDisableZeroCopy, | 1119 switches::kDisableZeroCopy, |
1119 switches::kDomAutomationController, | 1120 switches::kDomAutomationController, |
1120 switches::kEnableBeginFrameScheduling, | 1121 switches::kEnableBeginFrameScheduling, |
1121 switches::kEnableBleedingEdgeRenderingFastPaths, | 1122 switches::kEnableBleedingEdgeRenderingFastPaths, |
1122 switches::kEnablePreferCompositingToLCDText, | 1123 switches::kEnablePreferCompositingToLCDText, |
1123 switches::kEnableCompositingForTransition, | 1124 switches::kEnableCompositingForTransition, |
(...skipping 1120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2244 if (worker_ref_count_ == 0) | 2245 if (worker_ref_count_ == 0) |
2245 Cleanup(); | 2246 Cleanup(); |
2246 } | 2247 } |
2247 | 2248 |
2248 void RenderProcessHostImpl::EnsureMojoActivated() { | 2249 void RenderProcessHostImpl::EnsureMojoActivated() { |
2249 mojo_activation_required_ = true; | 2250 mojo_activation_required_ = true; |
2250 MaybeActivateMojo(); | 2251 MaybeActivateMojo(); |
2251 } | 2252 } |
2252 | 2253 |
2253 } // namespace content | 2254 } // namespace content |
OLD | NEW |