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

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

Issue 141163019: Re-land: cc: Remove WorkerPool class and instead use TaskGraphRunner directly. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: build fix Created 6 years, 11 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 | Annotate | Revision Log
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 1047 matching lines...) Expand 10 before | Expand all | Expand 10 after
1058 switches::kEnableWebMIDI, 1058 switches::kEnableWebMIDI,
1059 switches::kForceDeviceScaleFactor, 1059 switches::kForceDeviceScaleFactor,
1060 switches::kFullMemoryCrashReport, 1060 switches::kFullMemoryCrashReport,
1061 switches::kJavaScriptFlags, 1061 switches::kJavaScriptFlags,
1062 switches::kLoggingLevel, 1062 switches::kLoggingLevel,
1063 switches::kMaxUntiledLayerWidth, 1063 switches::kMaxUntiledLayerWidth,
1064 switches::kMaxUntiledLayerHeight, 1064 switches::kMaxUntiledLayerHeight,
1065 switches::kMemoryMetrics, 1065 switches::kMemoryMetrics,
1066 switches::kNoReferrers, 1066 switches::kNoReferrers,
1067 switches::kNoSandbox, 1067 switches::kNoSandbox,
1068 switches::kNumRasterThreads,
1068 switches::kPpapiInProcess, 1069 switches::kPpapiInProcess,
1069 switches::kProfilerTiming, 1070 switches::kProfilerTiming,
1070 switches::kReduceSecurityForTesting, 1071 switches::kReduceSecurityForTesting,
1071 switches::kRegisterPepperPlugins, 1072 switches::kRegisterPepperPlugins,
1072 switches::kRendererAssertTest, 1073 switches::kRendererAssertTest,
1073 switches::kRendererStartupDialog, 1074 switches::kRendererStartupDialog,
1074 switches::kShowPaintRects, 1075 switches::kShowPaintRects,
1075 switches::kSitePerProcess, 1076 switches::kSitePerProcess,
1076 switches::kStatsCollectionController, 1077 switches::kStatsCollectionController,
1077 switches::kTestSandbox, 1078 switches::kTestSandbox,
(...skipping 24 matching lines...) Expand all
1102 cc::switches::kEnableGPURasterization, 1103 cc::switches::kEnableGPURasterization,
1103 cc::switches::kEnableImplSidePainting, 1104 cc::switches::kEnableImplSidePainting,
1104 cc::switches::kEnableLCDText, 1105 cc::switches::kEnableLCDText,
1105 cc::switches::kEnableMapImage, 1106 cc::switches::kEnableMapImage,
1106 cc::switches::kEnablePartialSwap, 1107 cc::switches::kEnablePartialSwap,
1107 cc::switches::kEnablePerTilePainting, 1108 cc::switches::kEnablePerTilePainting,
1108 cc::switches::kEnablePinchVirtualViewport, 1109 cc::switches::kEnablePinchVirtualViewport,
1109 cc::switches::kEnableTopControlsPositionCalculation, 1110 cc::switches::kEnableTopControlsPositionCalculation,
1110 cc::switches::kMaxTilesForInterestArea, 1111 cc::switches::kMaxTilesForInterestArea,
1111 cc::switches::kMaxUnusedResourceMemoryUsagePercentage, 1112 cc::switches::kMaxUnusedResourceMemoryUsagePercentage,
1112 cc::switches::kNumRasterThreads,
1113 cc::switches::kShowCompositedLayerBorders, 1113 cc::switches::kShowCompositedLayerBorders,
1114 cc::switches::kShowFPSCounter, 1114 cc::switches::kShowFPSCounter,
1115 cc::switches::kShowLayerAnimationBounds, 1115 cc::switches::kShowLayerAnimationBounds,
1116 cc::switches::kShowNonOccludingRects, 1116 cc::switches::kShowNonOccludingRects,
1117 cc::switches::kShowOccludingRects, 1117 cc::switches::kShowOccludingRects,
1118 cc::switches::kShowPropertyChangedRects, 1118 cc::switches::kShowPropertyChangedRects,
1119 cc::switches::kShowReplicaScreenSpaceRects, 1119 cc::switches::kShowReplicaScreenSpaceRects,
1120 cc::switches::kShowScreenSpaceRects, 1120 cc::switches::kShowScreenSpaceRects,
1121 cc::switches::kShowSurfaceDamageRects, 1121 cc::switches::kShowSurfaceDamageRects,
1122 cc::switches::kSlowDownRasterScaleFactor, 1122 cc::switches::kSlowDownRasterScaleFactor,
(...skipping 901 matching lines...) Expand 10 before | Expand all | Expand 10 after
2024 return; 2024 return;
2025 Send(new MediaStreamMsg_EnableAecDump(file_for_transit)); 2025 Send(new MediaStreamMsg_EnableAecDump(file_for_transit));
2026 } 2026 }
2027 2027
2028 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() { 2028 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() {
2029 Send(new MediaStreamMsg_DisableAecDump()); 2029 Send(new MediaStreamMsg_DisableAecDump());
2030 } 2030 }
2031 #endif 2031 #endif
2032 2032
2033 } // namespace content 2033 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698