Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(217)

Side by Side Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 180783019: [Android] Define a baseline seccomp-bpf sandbox policy. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments, remove warmup Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | content/common/sandbox_linux/OWNERS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1076 matching lines...) Expand 10 before | Expand all | Expand 10 after
1087 switches::kEnableLayerSquashing, 1087 switches::kEnableLayerSquashing,
1088 switches::kEnableLogging, 1088 switches::kEnableLogging,
1089 switches::kEnableMapImage, 1089 switches::kEnableMapImage,
1090 switches::kEnableMemoryBenchmarking, 1090 switches::kEnableMemoryBenchmarking,
1091 switches::kEnableOverlayFullscreenVideo, 1091 switches::kEnableOverlayFullscreenVideo,
1092 switches::kEnableOverlayScrollbar, 1092 switches::kEnableOverlayScrollbar,
1093 switches::kEnableOverscrollNotifications, 1093 switches::kEnableOverscrollNotifications,
1094 switches::kEnablePinch, 1094 switches::kEnablePinch,
1095 switches::kEnablePreparsedJsCaching, 1095 switches::kEnablePreparsedJsCaching,
1096 switches::kEnableRepaintAfterLayout, 1096 switches::kEnableRepaintAfterLayout,
1097 switches::kEnableSeccompFilterSandbox,
1097 switches::kEnableServiceWorker, 1098 switches::kEnableServiceWorker,
1098 switches::kEnableSkiaBenchmarking, 1099 switches::kEnableSkiaBenchmarking,
1099 switches::kEnableSoftwareCompositing, 1100 switches::kEnableSoftwareCompositing,
1100 switches::kEnableSpeechSynthesis, 1101 switches::kEnableSpeechSynthesis,
1101 switches::kEnableStatsTable, 1102 switches::kEnableStatsTable,
1102 switches::kEnableStrictSiteIsolation, 1103 switches::kEnableStrictSiteIsolation,
1103 switches::kEnableTargetedStyleRecalc, 1104 switches::kEnableTargetedStyleRecalc,
1104 switches::kEnableUniversalAcceleratedOverflowScroll, 1105 switches::kEnableUniversalAcceleratedOverflowScroll,
1105 switches::kEnableTouchDragDrop, 1106 switches::kEnableTouchDragDrop,
1106 switches::kEnableTouchEditing, 1107 switches::kEnableTouchEditing,
(...skipping 1044 matching lines...) Expand 10 before | Expand all | Expand 10 after
2151 2152
2152 void RenderProcessHostImpl::SetWebUIHandle( 2153 void RenderProcessHostImpl::SetWebUIHandle(
2153 int32 view_routing_id, 2154 int32 view_routing_id,
2154 mojo::ScopedMessagePipeHandle handle) { 2155 mojo::ScopedMessagePipeHandle handle) {
2155 if (!render_process_host_mojo_) 2156 if (!render_process_host_mojo_)
2156 render_process_host_mojo_.reset(new RenderProcessHostMojoImpl(this)); 2157 render_process_host_mojo_.reset(new RenderProcessHostMojoImpl(this));
2157 render_process_host_mojo_->SetWebUIHandle(view_routing_id, handle.Pass()); 2158 render_process_host_mojo_->SetWebUIHandle(view_routing_id, handle.Pass());
2158 } 2159 }
2159 2160
2160 } // namespace content 2161 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/common/sandbox_linux/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698