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 1093 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1104 switches::kEnableViewportMeta, | 1104 switches::kEnableViewportMeta, |
1105 switches::kMainFrameResizesAreOrientationChanges, | 1105 switches::kMainFrameResizesAreOrientationChanges, |
1106 switches::kEnableVtune, | 1106 switches::kEnableVtune, |
1107 switches::kEnableWebAnimationsSVG, | 1107 switches::kEnableWebAnimationsSVG, |
1108 switches::kEnableWebGLDraftExtensions, | 1108 switches::kEnableWebGLDraftExtensions, |
1109 switches::kEnableWebMIDI, | 1109 switches::kEnableWebMIDI, |
1110 switches::kEnableZeroCopy, | 1110 switches::kEnableZeroCopy, |
1111 switches::kForceCompositingMode, | 1111 switches::kForceCompositingMode, |
1112 switches::kForceDeviceScaleFactor, | 1112 switches::kForceDeviceScaleFactor, |
1113 switches::kFullMemoryCrashReport, | 1113 switches::kFullMemoryCrashReport, |
| 1114 switches::kIgnoreResolutionLimitsForAcceleratedVideoDecode, |
1114 switches::kJavaScriptFlags, | 1115 switches::kJavaScriptFlags, |
1115 switches::kLoggingLevel, | 1116 switches::kLoggingLevel, |
1116 switches::kMaxUntiledLayerWidth, | 1117 switches::kMaxUntiledLayerWidth, |
1117 switches::kMaxUntiledLayerHeight, | 1118 switches::kMaxUntiledLayerHeight, |
1118 switches::kMemoryMetrics, | 1119 switches::kMemoryMetrics, |
1119 switches::kNoReferrers, | 1120 switches::kNoReferrers, |
1120 switches::kNoSandbox, | 1121 switches::kNoSandbox, |
1121 switches::kNumRasterThreads, | 1122 switches::kNumRasterThreads, |
1122 switches::kPpapiInProcess, | 1123 switches::kPpapiInProcess, |
1123 switches::kProfilerTiming, | 1124 switches::kProfilerTiming, |
(...skipping 951 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2075 mojo::ScopedMessagePipeHandle handle) { | 2076 mojo::ScopedMessagePipeHandle handle) { |
2076 mojo_activation_required_ = true; | 2077 mojo_activation_required_ = true; |
2077 MaybeActivateMojo(); | 2078 MaybeActivateMojo(); |
2078 | 2079 |
2079 mojo::AllocationScope scope; | 2080 mojo::AllocationScope scope; |
2080 mojo_application_host_->shell_client()->AcceptConnection(service_name, | 2081 mojo_application_host_->shell_client()->AcceptConnection(service_name, |
2081 handle.Pass()); | 2082 handle.Pass()); |
2082 } | 2083 } |
2083 | 2084 |
2084 } // namespace content | 2085 } // namespace content |
OLD | NEW |