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

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

Issue 114923005: base: Discardable memory types. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address review feedback Created 6 years, 12 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 1060 matching lines...) Expand 10 before | Expand all | Expand 10 after
1071 switches::kReduceSecurityForTesting, 1071 switches::kReduceSecurityForTesting,
1072 switches::kRegisterPepperPlugins, 1072 switches::kRegisterPepperPlugins,
1073 switches::kRendererAssertTest, 1073 switches::kRendererAssertTest,
1074 switches::kRendererStartupDialog, 1074 switches::kRendererStartupDialog,
1075 switches::kShowPaintRects, 1075 switches::kShowPaintRects,
1076 switches::kSitePerProcess, 1076 switches::kSitePerProcess,
1077 switches::kStatsCollectionController, 1077 switches::kStatsCollectionController,
1078 switches::kTestSandbox, 1078 switches::kTestSandbox,
1079 switches::kTouchEvents, 1079 switches::kTouchEvents,
1080 switches::kTraceToConsole, 1080 switches::kTraceToConsole,
1081 switches::kUseDiscardableMemory,
1081 // This flag needs to be propagated to the renderer process for 1082 // This flag needs to be propagated to the renderer process for
1082 // --in-process-webgl. 1083 // --in-process-webgl.
1083 switches::kUseGL, 1084 switches::kUseGL,
1084 switches::kUseMobileUserAgent, 1085 switches::kUseMobileUserAgent,
1085 switches::kUserAgent, 1086 switches::kUserAgent,
1086 switches::kV, 1087 switches::kV,
1087 switches::kVideoThreads, 1088 switches::kVideoThreads,
1088 switches::kVModule, 1089 switches::kVModule,
1089 switches::kWebCoreLogChannels, 1090 switches::kWebCoreLogChannels,
1090 switches::kWebGLCommandBufferSizeKb, 1091 switches::kWebGLCommandBufferSizeKb,
(...skipping 886 matching lines...) Expand 10 before | Expand all | Expand 10 after
1977 return; 1978 return;
1978 Send(new MediaStreamMsg_EnableAecDump(file_for_transit)); 1979 Send(new MediaStreamMsg_EnableAecDump(file_for_transit));
1979 } 1980 }
1980 1981
1981 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() { 1982 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() {
1982 Send(new MediaStreamMsg_DisableAecDump()); 1983 Send(new MediaStreamMsg_DisableAecDump());
1983 } 1984 }
1984 #endif 1985 #endif
1985 1986
1986 } // namespace content 1987 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698