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

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

Issue 544163003: Remove commandline flag "--enable-targeted-style-recalc". (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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/child/runtime_features.cc » ('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 1114 matching lines...) Expand 10 before | Expand all | Expand 10 after
1125 switches::kEnableOverlayScrollbar, 1125 switches::kEnableOverlayScrollbar,
1126 switches::kEnableOverscrollNotifications, 1126 switches::kEnableOverscrollNotifications,
1127 switches::kEnablePinch, 1127 switches::kEnablePinch,
1128 switches::kEnablePreciseMemoryInfo, 1128 switches::kEnablePreciseMemoryInfo,
1129 switches::kEnableRendererMojoChannel, 1129 switches::kEnableRendererMojoChannel,
1130 switches::kEnableSeccompFilterSandbox, 1130 switches::kEnableSeccompFilterSandbox,
1131 switches::kEnableSkiaBenchmarking, 1131 switches::kEnableSkiaBenchmarking,
1132 switches::kEnableSmoothScrolling, 1132 switches::kEnableSmoothScrolling,
1133 switches::kEnableStatsTable, 1133 switches::kEnableStatsTable,
1134 switches::kEnableStrictSiteIsolation, 1134 switches::kEnableStrictSiteIsolation,
1135 switches::kEnableTargetedStyleRecalc,
1136 switches::kEnableThreadedCompositing, 1135 switches::kEnableThreadedCompositing,
1137 switches::kEnableTouchDragDrop, 1136 switches::kEnableTouchDragDrop,
1138 switches::kEnableTouchEditing, 1137 switches::kEnableTouchEditing,
1139 switches::kEnableViewport, 1138 switches::kEnableViewport,
1140 switches::kEnableViewportMeta, 1139 switches::kEnableViewportMeta,
1141 switches::kEnableVtune, 1140 switches::kEnableVtune,
1142 switches::kEnableWebGLDraftExtensions, 1141 switches::kEnableWebGLDraftExtensions,
1143 switches::kEnableWebGLImageChromium, 1142 switches::kEnableWebGLImageChromium,
1144 switches::kEnableWebMIDI, 1143 switches::kEnableWebMIDI,
1145 switches::kEnableZeroCopy, 1144 switches::kEnableZeroCopy,
(...skipping 1079 matching lines...) Expand 10 before | Expand all | Expand 10 after
2225 if (worker_ref_count_ == 0) 2224 if (worker_ref_count_ == 0)
2226 Cleanup(); 2225 Cleanup();
2227 } 2226 }
2228 2227
2229 void RenderProcessHostImpl::EnsureMojoActivated() { 2228 void RenderProcessHostImpl::EnsureMojoActivated() {
2230 mojo_activation_required_ = true; 2229 mojo_activation_required_ = true;
2231 MaybeActivateMojo(); 2230 MaybeActivateMojo();
2232 } 2231 }
2233 2232
2234 } // namespace content 2233 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/child/runtime_features.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698