| 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 1020 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1031 switches::kDisableBreakpad, | 1031 switches::kDisableBreakpad, |
| 1032 switches::kDisableCompositingForFixedPosition, | 1032 switches::kDisableCompositingForFixedPosition, |
| 1033 switches::kDisableCompositingForTransition, | 1033 switches::kDisableCompositingForTransition, |
| 1034 switches::kDisableDatabases, | 1034 switches::kDisableDatabases, |
| 1035 switches::kDisableDesktopNotifications, | 1035 switches::kDisableDesktopNotifications, |
| 1036 switches::kDisableDirectNPAPIRequests, | 1036 switches::kDisableDirectNPAPIRequests, |
| 1037 switches::kDisableDistanceFieldText, | 1037 switches::kDisableDistanceFieldText, |
| 1038 switches::kDisableFastTextAutosizing, | 1038 switches::kDisableFastTextAutosizing, |
| 1039 switches::kDisableFileSystem, | 1039 switches::kDisableFileSystem, |
| 1040 switches::kDisableFiltersOverIPC, | 1040 switches::kDisableFiltersOverIPC, |
| 1041 switches::kDisableGpuCompositing, |
| 1041 switches::kDisableGpuVsync, | 1042 switches::kDisableGpuVsync, |
| 1042 switches::kDisableLowResTiling, | 1043 switches::kDisableLowResTiling, |
| 1043 switches::kDisableHistogramCustomizer, | 1044 switches::kDisableHistogramCustomizer, |
| 1044 switches::kDisableLCDText, | 1045 switches::kDisableLCDText, |
| 1045 switches::kDisableLayerSquashing, | 1046 switches::kDisableLayerSquashing, |
| 1046 switches::kDisableLocalStorage, | 1047 switches::kDisableLocalStorage, |
| 1047 switches::kDisableLogging, | 1048 switches::kDisableLogging, |
| 1048 switches::kDisableMediaSource, | 1049 switches::kDisableMediaSource, |
| 1049 switches::kDisableOverlayScrollbar, | 1050 switches::kDisableOverlayScrollbar, |
| 1050 switches::kDisablePinch, | 1051 switches::kDisablePinch, |
| (...skipping 1022 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2073 mojo::ScopedMessagePipeHandle handle) { | 2074 mojo::ScopedMessagePipeHandle handle) { |
| 2074 mojo_activation_required_ = true; | 2075 mojo_activation_required_ = true; |
| 2075 MaybeActivateMojo(); | 2076 MaybeActivateMojo(); |
| 2076 | 2077 |
| 2077 mojo::AllocationScope scope; | 2078 mojo::AllocationScope scope; |
| 2078 mojo_application_host_->shell_client()->AcceptConnection(service_name, | 2079 mojo_application_host_->shell_client()->AcceptConnection(service_name, |
| 2079 handle.Pass()); | 2080 handle.Pass()); |
| 2080 } | 2081 } |
| 2081 | 2082 |
| 2082 } // namespace content | 2083 } // namespace content |
| OLD | NEW |