| 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 1007 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1018 switches::kAllowLoopbackInPeerConnection, | 1018 switches::kAllowLoopbackInPeerConnection, |
| 1019 switches::kAudioBufferSize, | 1019 switches::kAudioBufferSize, |
| 1020 switches::kAuditAllHandles, | 1020 switches::kAuditAllHandles, |
| 1021 switches::kAuditHandles, | 1021 switches::kAuditHandles, |
| 1022 switches::kBlinkPlatformLogChannels, | 1022 switches::kBlinkPlatformLogChannels, |
| 1023 switches::kBlockCrossSiteDocuments, | 1023 switches::kBlockCrossSiteDocuments, |
| 1024 switches::kDefaultTileWidth, | 1024 switches::kDefaultTileWidth, |
| 1025 switches::kDefaultTileHeight, | 1025 switches::kDefaultTileHeight, |
| 1026 switches::kDisable3DAPIs, | 1026 switches::kDisable3DAPIs, |
| 1027 switches::kDisableAcceleratedFixedRootBackground, | 1027 switches::kDisableAcceleratedFixedRootBackground, |
| 1028 switches::kDisableAcceleratedOverflowScroll, |
| 1028 switches::kDisableAcceleratedVideoDecode, | 1029 switches::kDisableAcceleratedVideoDecode, |
| 1029 switches::kDisableApplicationCache, | 1030 switches::kDisableApplicationCache, |
| 1030 switches::kDisableBreakpad, | 1031 switches::kDisableBreakpad, |
| 1031 switches::kDisableCompositingForFixedPosition, | 1032 switches::kDisableCompositingForFixedPosition, |
| 1032 switches::kDisableCompositingForTransition, | 1033 switches::kDisableCompositingForTransition, |
| 1033 switches::kDisableDatabases, | 1034 switches::kDisableDatabases, |
| 1034 switches::kDisableDesktopNotifications, | 1035 switches::kDisableDesktopNotifications, |
| 1035 switches::kDisableDirectNPAPIRequests, | 1036 switches::kDisableDirectNPAPIRequests, |
| 1036 switches::kDisableDistanceFieldText, | 1037 switches::kDisableDistanceFieldText, |
| 1037 switches::kDisableFastTextAutosizing, | 1038 switches::kDisableFastTextAutosizing, |
| (...skipping 1034 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2072 mojo::ScopedMessagePipeHandle handle) { | 2073 mojo::ScopedMessagePipeHandle handle) { |
| 2073 mojo_activation_required_ = true; | 2074 mojo_activation_required_ = true; |
| 2074 MaybeActivateMojo(); | 2075 MaybeActivateMojo(); |
| 2075 | 2076 |
| 2076 mojo::AllocationScope scope; | 2077 mojo::AllocationScope scope; |
| 2077 mojo_application_host_->shell_client()->AcceptConnection(service_name, | 2078 mojo_application_host_->shell_client()->AcceptConnection(service_name, |
| 2078 handle.Pass()); | 2079 handle.Pass()); |
| 2079 } | 2080 } |
| 2080 | 2081 |
| 2081 } // namespace content | 2082 } // namespace content |
| OLD | NEW |