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

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

Issue 135223002: telemetry: add smoothness.*.key_silk_cases benchmarks (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. 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 1076 matching lines...) Expand 10 before | Expand all | Expand 10 after
1087 switches::kVideoThreads, 1087 switches::kVideoThreads,
1088 switches::kVModule, 1088 switches::kVModule,
1089 switches::kWebCoreLogChannels, 1089 switches::kWebCoreLogChannels,
1090 switches::kWebGLCommandBufferSizeKb, 1090 switches::kWebGLCommandBufferSizeKb,
1091 // Please keep these in alphabetical order. Compositor switches here should 1091 // Please keep these in alphabetical order. Compositor switches here should
1092 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. 1092 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc.
1093 cc::switches::kBackgroundColorInsteadOfCheckerboard, 1093 cc::switches::kBackgroundColorInsteadOfCheckerboard,
1094 cc::switches::kCompositeToMailbox, 1094 cc::switches::kCompositeToMailbox,
1095 cc::switches::kDisableCompositedAntialiasing, 1095 cc::switches::kDisableCompositedAntialiasing,
1096 cc::switches::kDisableCompositorTouchHitTesting, 1096 cc::switches::kDisableCompositorTouchHitTesting,
1097 cc::switches::kDisableGPURasterization,
1097 cc::switches::kDisableImplSidePainting, 1098 cc::switches::kDisableImplSidePainting,
1098 cc::switches::kDisableLCDText, 1099 cc::switches::kDisableLCDText,
1099 cc::switches::kDisableMapImage, 1100 cc::switches::kDisableMapImage,
1100 cc::switches::kDisableThreadedAnimation, 1101 cc::switches::kDisableThreadedAnimation,
1101 cc::switches::kEnableGPURasterization, 1102 cc::switches::kEnableGPURasterization,
1102 cc::switches::kEnableImplSidePainting, 1103 cc::switches::kEnableImplSidePainting,
1103 cc::switches::kEnableLCDText, 1104 cc::switches::kEnableLCDText,
1104 cc::switches::kEnableMapImage, 1105 cc::switches::kEnableMapImage,
1105 cc::switches::kEnablePartialSwap, 1106 cc::switches::kEnablePartialSwap,
1106 cc::switches::kEnablePerTilePainting, 1107 cc::switches::kEnablePerTilePainting,
(...skipping 925 matching lines...) Expand 10 before | Expand all | Expand 10 after
2032 return; 2033 return;
2033 Send(new MediaStreamMsg_EnableAecDump(file_for_transit)); 2034 Send(new MediaStreamMsg_EnableAecDump(file_for_transit));
2034 } 2035 }
2035 2036
2036 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() { 2037 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() {
2037 Send(new MediaStreamMsg_DisableAecDump()); 2038 Send(new MediaStreamMsg_DisableAecDump());
2038 } 2039 }
2039 #endif 2040 #endif
2040 2041
2041 } // namespace content 2042 } // namespace content
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/chrome_restart_request.cc ('k') | content/renderer/gpu/render_widget_compositor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698