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

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

Issue 268623009: Introduce enablePreciseMemoryInfo switch and apply it to both renderer and shared worker (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: for landing Created 6 years, 7 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/browser/worker_host/worker_process_host.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 1074 matching lines...) Expand 10 before | Expand all | Expand 10 after
1085 switches::kEnableInbandTextTracks, 1085 switches::kEnableInbandTextTracks,
1086 switches::kEnableLCDText, 1086 switches::kEnableLCDText,
1087 switches::kEnableLayerSquashing, 1087 switches::kEnableLayerSquashing,
1088 switches::kEnableLogging, 1088 switches::kEnableLogging,
1089 switches::kEnableMemoryBenchmarking, 1089 switches::kEnableMemoryBenchmarking,
1090 switches::kEnableOneCopy, 1090 switches::kEnableOneCopy,
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::kEnablePreciseMemoryInfo,
1095 switches::kEnablePreparsedJsCaching, 1096 switches::kEnablePreparsedJsCaching,
1096 switches::kEnableRepaintAfterLayout, 1097 switches::kEnableRepaintAfterLayout,
1097 switches::kEnableSeccompFilterSandbox, 1098 switches::kEnableSeccompFilterSandbox,
1098 switches::kEnableServiceWorker, 1099 switches::kEnableServiceWorker,
1099 switches::kEnableSkiaBenchmarking, 1100 switches::kEnableSkiaBenchmarking,
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,
(...skipping 974 matching lines...) Expand 10 before | Expand all | Expand 10 after
2079 mojo::ScopedMessagePipeHandle handle) { 2080 mojo::ScopedMessagePipeHandle handle) {
2080 mojo_activation_required_ = true; 2081 mojo_activation_required_ = true;
2081 MaybeActivateMojo(); 2082 MaybeActivateMojo();
2082 2083
2083 mojo::AllocationScope scope; 2084 mojo::AllocationScope scope;
2084 mojo_application_host_->shell_client()->AcceptConnection(service_name, 2085 mojo_application_host_->shell_client()->AcceptConnection(service_name,
2085 handle.Pass()); 2086 handle.Pass());
2086 } 2087 }
2087 2088
2088 } // namespace content 2089 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/browser/worker_host/worker_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698