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 1102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1113 switches::kDisableSessionStorage, | 1113 switches::kDisableSessionStorage, |
1114 switches::kDisableSharedWorkers, | 1114 switches::kDisableSharedWorkers, |
1115 switches::kDisableThreadedCompositing, | 1115 switches::kDisableThreadedCompositing, |
1116 switches::kDisableThreadedScrolling, | 1116 switches::kDisableThreadedScrolling, |
1117 switches::kDisableTouchAdjustment, | 1117 switches::kDisableTouchAdjustment, |
1118 switches::kDisableTouchDragDrop, | 1118 switches::kDisableTouchDragDrop, |
1119 switches::kDisableTouchEditing, | 1119 switches::kDisableTouchEditing, |
1120 switches::kDisableV8IdleNotificationAfterCommit, | 1120 switches::kDisableV8IdleNotificationAfterCommit, |
1121 switches::kDisableZeroCopy, | 1121 switches::kDisableZeroCopy, |
1122 switches::kDomAutomationController, | 1122 switches::kDomAutomationController, |
| 1123 switches::kEnableAcceleratedJpegDecoding, |
1123 switches::kEnableBeginFrameScheduling, | 1124 switches::kEnableBeginFrameScheduling, |
1124 switches::kEnableBleedingEdgeRenderingFastPaths, | 1125 switches::kEnableBleedingEdgeRenderingFastPaths, |
1125 switches::kEnablePreferCompositingToLCDText, | 1126 switches::kEnablePreferCompositingToLCDText, |
1126 switches::kEnableCompositingForTransition, | 1127 switches::kEnableCompositingForTransition, |
1127 switches::kEnableCredentialManagerAPI, | 1128 switches::kEnableCredentialManagerAPI, |
1128 switches::kEnableDeferredImageDecoding, | 1129 switches::kEnableDeferredImageDecoding, |
1129 switches::kEnableDisplayList2dCanvas, | 1130 switches::kEnableDisplayList2dCanvas, |
1130 switches::kEnableDistanceFieldText, | 1131 switches::kEnableDistanceFieldText, |
1131 switches::kEnableEncryptedMedia, | 1132 switches::kEnableEncryptedMedia, |
1132 switches::kEnableExperimentalCanvasFeatures, | 1133 switches::kEnableExperimentalCanvasFeatures, |
(...skipping 1115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2248 if (worker_ref_count_ == 0) | 2249 if (worker_ref_count_ == 0) |
2249 Cleanup(); | 2250 Cleanup(); |
2250 } | 2251 } |
2251 | 2252 |
2252 void RenderProcessHostImpl::EnsureMojoActivated() { | 2253 void RenderProcessHostImpl::EnsureMojoActivated() { |
2253 mojo_activation_required_ = true; | 2254 mojo_activation_required_ = true; |
2254 MaybeActivateMojo(); | 2255 MaybeActivateMojo(); |
2255 } | 2256 } |
2256 | 2257 |
2257 } // namespace content | 2258 } // namespace content |
OLD | NEW |