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 1043 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1054 switches::kDisableSessionStorage, | 1054 switches::kDisableSessionStorage, |
1055 switches::kDisableSharedWorkers, | 1055 switches::kDisableSharedWorkers, |
1056 switches::kDisableTouchAdjustment, | 1056 switches::kDisableTouchAdjustment, |
1057 switches::kDisableTouchDragDrop, | 1057 switches::kDisableTouchDragDrop, |
1058 switches::kDisableTouchEditing, | 1058 switches::kDisableTouchEditing, |
1059 switches::kDisableUniversalAcceleratedOverflowScroll, | 1059 switches::kDisableUniversalAcceleratedOverflowScroll, |
1060 switches::kDisableZeroCopy, | 1060 switches::kDisableZeroCopy, |
1061 switches::kDomAutomationController, | 1061 switches::kDomAutomationController, |
1062 switches::kEnableAcceleratedFixedRootBackground, | 1062 switches::kEnableAcceleratedFixedRootBackground, |
1063 switches::kEnableAcceleratedOverflowScroll, | 1063 switches::kEnableAcceleratedOverflowScroll, |
1064 switches::kEnableADTSStreamParser, | |
1065 switches::kEnableBeginFrameScheduling, | 1064 switches::kEnableBeginFrameScheduling, |
1066 switches::kEnableBleedingEdgeRenderingFastPaths, | 1065 switches::kEnableBleedingEdgeRenderingFastPaths, |
1067 switches::kEnableCompositingForFixedPosition, | 1066 switches::kEnableCompositingForFixedPosition, |
1068 switches::kEnableCompositingForTransition, | 1067 switches::kEnableCompositingForTransition, |
1069 switches::kEnableDeferredImageDecoding, | 1068 switches::kEnableDeferredImageDecoding, |
1070 switches::kEnableDistanceFieldText, | 1069 switches::kEnableDistanceFieldText, |
1071 switches::kEnableEncryptedMedia, | 1070 switches::kEnableEncryptedMedia, |
1072 switches::kEnableExperimentalCanvasFeatures, | 1071 switches::kEnableExperimentalCanvasFeatures, |
1073 switches::kEnableExperimentalWebPlatformFeatures, | 1072 switches::kEnableExperimentalWebPlatformFeatures, |
1074 switches::kEnableFastTextAutosizing, | 1073 switches::kEnableFastTextAutosizing, |
(...skipping 998 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2073 mojo::ScopedMessagePipeHandle handle) { | 2072 mojo::ScopedMessagePipeHandle handle) { |
2074 mojo_activation_required_ = true; | 2073 mojo_activation_required_ = true; |
2075 MaybeActivateMojo(); | 2074 MaybeActivateMojo(); |
2076 | 2075 |
2077 mojo::AllocationScope scope; | 2076 mojo::AllocationScope scope; |
2078 mojo_application_host_->shell_client()->AcceptConnection(service_name, | 2077 mojo_application_host_->shell_client()->AcceptConnection(service_name, |
2079 handle.Pass()); | 2078 handle.Pass()); |
2080 } | 2079 } |
2081 | 2080 |
2082 } // namespace content | 2081 } // namespace content |
OLD | NEW |