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

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

Issue 1654863003: Kill --memory-metrics and on-demand Memory.Browser/RenderUsed histograms (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 10 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 | « content/browser/browser_main_loop.cc ('k') | content/public/common/content_switches.h » ('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 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 1467 matching lines...) Expand 10 before | Expand all | Expand 10 after
1478 switches::kForceDeviceScaleFactor, 1478 switches::kForceDeviceScaleFactor,
1479 switches::kForceDisplayList2dCanvas, 1479 switches::kForceDisplayList2dCanvas,
1480 switches::kForceOverlayFullscreenVideo, 1480 switches::kForceOverlayFullscreenVideo,
1481 switches::kFullMemoryCrashReport, 1481 switches::kFullMemoryCrashReport,
1482 switches::kIPCConnectionTimeout, 1482 switches::kIPCConnectionTimeout,
1483 switches::kJavaScriptFlags, 1483 switches::kJavaScriptFlags,
1484 switches::kLoggingLevel, 1484 switches::kLoggingLevel,
1485 switches::kMainFrameResizesAreOrientationChanges, 1485 switches::kMainFrameResizesAreOrientationChanges,
1486 switches::kMaxUntiledLayerWidth, 1486 switches::kMaxUntiledLayerWidth,
1487 switches::kMaxUntiledLayerHeight, 1487 switches::kMaxUntiledLayerHeight,
1488 switches::kMemoryMetrics,
1489 switches::kMojoLocalStorage, 1488 switches::kMojoLocalStorage,
1490 switches::kNoReferrers, 1489 switches::kNoReferrers,
1491 switches::kNoSandbox, 1490 switches::kNoSandbox,
1492 switches::kOverridePluginPowerSaverForTesting, 1491 switches::kOverridePluginPowerSaverForTesting,
1493 switches::kPpapiInProcess, 1492 switches::kPpapiInProcess,
1494 switches::kProfilerTiming, 1493 switches::kProfilerTiming,
1495 switches::kReducedReferrerGranularity, 1494 switches::kReducedReferrerGranularity,
1496 switches::kReduceSecurityForTesting, 1495 switches::kReduceSecurityForTesting,
1497 switches::kRegisterPepperPlugins, 1496 switches::kRegisterPepperPlugins,
1498 switches::kRendererStartupDialog, 1497 switches::kRendererStartupDialog,
(...skipping 1291 matching lines...) Expand 10 before | Expand all | Expand 10 after
2790 void RenderProcessHostImpl::GetAudioOutputControllers( 2789 void RenderProcessHostImpl::GetAudioOutputControllers(
2791 const GetAudioOutputControllersCallback& callback) const { 2790 const GetAudioOutputControllersCallback& callback) const {
2792 audio_renderer_host()->GetOutputControllers(callback); 2791 audio_renderer_host()->GetOutputControllers(callback);
2793 } 2792 }
2794 2793
2795 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { 2794 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() {
2796 return bluetooth_dispatcher_host_.get(); 2795 return bluetooth_dispatcher_host_.get();
2797 } 2796 }
2798 2797
2799 } // namespace content 2798 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/browser_main_loop.cc ('k') | content/public/common/content_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698