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 1077 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1088 switches::kDefaultTileWidth, | 1088 switches::kDefaultTileWidth, |
1089 switches::kDefaultTileHeight, | 1089 switches::kDefaultTileHeight, |
1090 switches::kDisable3DAPIs, | 1090 switches::kDisable3DAPIs, |
1091 switches::kDisableAcceleratedVideoDecode, | 1091 switches::kDisableAcceleratedVideoDecode, |
1092 switches::kDisableApplicationCache, | 1092 switches::kDisableApplicationCache, |
1093 switches::kDisableBlinkScheduler, | 1093 switches::kDisableBlinkScheduler, |
1094 switches::kDisableBreakpad, | 1094 switches::kDisableBreakpad, |
1095 switches::kDisablePreferCompositingToLCDText, | 1095 switches::kDisablePreferCompositingToLCDText, |
1096 switches::kDisableCompositingForTransition, | 1096 switches::kDisableCompositingForTransition, |
1097 switches::kDisableDatabases, | 1097 switches::kDisableDatabases, |
1098 switches::kDisableDesktopNotifications, | |
1099 switches::kDisableDirectNPAPIRequests, | 1098 switches::kDisableDirectNPAPIRequests, |
1100 switches::kDisableDisplayList2dCanvas, | 1099 switches::kDisableDisplayList2dCanvas, |
1101 switches::kDisableDistanceFieldText, | 1100 switches::kDisableDistanceFieldText, |
1102 switches::kDisableFileSystem, | 1101 switches::kDisableFileSystem, |
1103 switches::kDisableGpuCompositing, | 1102 switches::kDisableGpuCompositing, |
1104 switches::kDisableGpuVsync, | 1103 switches::kDisableGpuVsync, |
1105 switches::kDisableLowResTiling, | 1104 switches::kDisableLowResTiling, |
1106 switches::kDisableHistogramCustomizer, | 1105 switches::kDisableHistogramCustomizer, |
1107 switches::kDisableLCDText, | 1106 switches::kDisableLCDText, |
1108 switches::kDisableLayerSquashing, | 1107 switches::kDisableLayerSquashing, |
(...skipping 1143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2252 if (worker_ref_count_ == 0) | 2251 if (worker_ref_count_ == 0) |
2253 Cleanup(); | 2252 Cleanup(); |
2254 } | 2253 } |
2255 | 2254 |
2256 void RenderProcessHostImpl::EnsureMojoActivated() { | 2255 void RenderProcessHostImpl::EnsureMojoActivated() { |
2257 mojo_activation_required_ = true; | 2256 mojo_activation_required_ = true; |
2258 MaybeActivateMojo(); | 2257 MaybeActivateMojo(); |
2259 } | 2258 } |
2260 | 2259 |
2261 } // namespace content | 2260 } // namespace content |
OLD | NEW |