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

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

Issue 143003012: Revert of cc: Remove WorkerPool class and instead use TaskGraphRunner directly. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 1046 matching lines...) Expand 10 before | Expand all | Expand 10 after
1057 switches::kEnableWebMIDI, 1057 switches::kEnableWebMIDI,
1058 switches::kForceDeviceScaleFactor, 1058 switches::kForceDeviceScaleFactor,
1059 switches::kFullMemoryCrashReport, 1059 switches::kFullMemoryCrashReport,
1060 switches::kJavaScriptFlags, 1060 switches::kJavaScriptFlags,
1061 switches::kLoggingLevel, 1061 switches::kLoggingLevel,
1062 switches::kMaxUntiledLayerWidth, 1062 switches::kMaxUntiledLayerWidth,
1063 switches::kMaxUntiledLayerHeight, 1063 switches::kMaxUntiledLayerHeight,
1064 switches::kMemoryMetrics, 1064 switches::kMemoryMetrics,
1065 switches::kNoReferrers, 1065 switches::kNoReferrers,
1066 switches::kNoSandbox, 1066 switches::kNoSandbox,
1067 switches::kNumRasterThreads,
1068 switches::kPpapiInProcess, 1067 switches::kPpapiInProcess,
1069 switches::kProfilerTiming, 1068 switches::kProfilerTiming,
1070 switches::kReduceSecurityForTesting, 1069 switches::kReduceSecurityForTesting,
1071 switches::kRegisterPepperPlugins, 1070 switches::kRegisterPepperPlugins,
1072 switches::kRendererAssertTest, 1071 switches::kRendererAssertTest,
1073 switches::kRendererStartupDialog, 1072 switches::kRendererStartupDialog,
1074 switches::kShowPaintRects, 1073 switches::kShowPaintRects,
1075 switches::kSitePerProcess, 1074 switches::kSitePerProcess,
1076 switches::kStatsCollectionController, 1075 switches::kStatsCollectionController,
1077 switches::kTestSandbox, 1076 switches::kTestSandbox,
(...skipping 24 matching lines...) Expand all
1102 cc::switches::kEnableGPURasterization, 1101 cc::switches::kEnableGPURasterization,
1103 cc::switches::kEnableImplSidePainting, 1102 cc::switches::kEnableImplSidePainting,
1104 cc::switches::kEnableLCDText, 1103 cc::switches::kEnableLCDText,
1105 cc::switches::kEnableMapImage, 1104 cc::switches::kEnableMapImage,
1106 cc::switches::kEnablePartialSwap, 1105 cc::switches::kEnablePartialSwap,
1107 cc::switches::kEnablePerTilePainting, 1106 cc::switches::kEnablePerTilePainting,
1108 cc::switches::kEnablePinchVirtualViewport, 1107 cc::switches::kEnablePinchVirtualViewport,
1109 cc::switches::kEnableTopControlsPositionCalculation, 1108 cc::switches::kEnableTopControlsPositionCalculation,
1110 cc::switches::kMaxTilesForInterestArea, 1109 cc::switches::kMaxTilesForInterestArea,
1111 cc::switches::kMaxUnusedResourceMemoryUsagePercentage, 1110 cc::switches::kMaxUnusedResourceMemoryUsagePercentage,
1111 cc::switches::kNumRasterThreads,
1112 cc::switches::kShowCompositedLayerBorders, 1112 cc::switches::kShowCompositedLayerBorders,
1113 cc::switches::kShowFPSCounter, 1113 cc::switches::kShowFPSCounter,
1114 cc::switches::kShowLayerAnimationBounds, 1114 cc::switches::kShowLayerAnimationBounds,
1115 cc::switches::kShowNonOccludingRects, 1115 cc::switches::kShowNonOccludingRects,
1116 cc::switches::kShowOccludingRects, 1116 cc::switches::kShowOccludingRects,
1117 cc::switches::kShowPropertyChangedRects, 1117 cc::switches::kShowPropertyChangedRects,
1118 cc::switches::kShowReplicaScreenSpaceRects, 1118 cc::switches::kShowReplicaScreenSpaceRects,
1119 cc::switches::kShowScreenSpaceRects, 1119 cc::switches::kShowScreenSpaceRects,
1120 cc::switches::kShowSurfaceDamageRects, 1120 cc::switches::kShowSurfaceDamageRects,
1121 cc::switches::kSlowDownRasterScaleFactor, 1121 cc::switches::kSlowDownRasterScaleFactor,
(...skipping 901 matching lines...) Expand 10 before | Expand all | Expand 10 after
2023 return; 2023 return;
2024 Send(new MediaStreamMsg_EnableAecDump(file_for_transit)); 2024 Send(new MediaStreamMsg_EnableAecDump(file_for_transit));
2025 } 2025 }
2026 2026
2027 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() { 2027 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() {
2028 Send(new MediaStreamMsg_DisableAecDump()); 2028 Send(new MediaStreamMsg_DisableAecDump());
2029 } 2029 }
2030 #endif 2030 #endif
2031 2031
2032 } // namespace content 2032 } // namespace content
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/chrome_restart_request.cc ('k') | content/public/common/content_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698