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

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

Issue 405163004: Add runtime flag to enable the display list 2D canvas implementation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Applied corrections Created 6 years, 5 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 1107 matching lines...) Expand 10 before | Expand all | Expand 10 after
1118 switches::kDisableTouchEditing, 1118 switches::kDisableTouchEditing,
1119 switches::kDisableZeroCopy, 1119 switches::kDisableZeroCopy,
1120 switches::kDomAutomationController, 1120 switches::kDomAutomationController,
1121 switches::kEnableAcceleratedFixedRootBackground, 1121 switches::kEnableAcceleratedFixedRootBackground,
1122 switches::kEnableAcceleratedOverflowScroll, 1122 switches::kEnableAcceleratedOverflowScroll,
1123 switches::kEnableBeginFrameScheduling, 1123 switches::kEnableBeginFrameScheduling,
1124 switches::kEnableBleedingEdgeRenderingFastPaths, 1124 switches::kEnableBleedingEdgeRenderingFastPaths,
1125 switches::kEnableCompositingForFixedPosition, 1125 switches::kEnableCompositingForFixedPosition,
1126 switches::kEnableCompositingForTransition, 1126 switches::kEnableCompositingForTransition,
1127 switches::kEnableDeferredImageDecoding, 1127 switches::kEnableDeferredImageDecoding,
1128 switches::kEnableDisplayList2dCanvas,
1128 switches::kEnableDistanceFieldText, 1129 switches::kEnableDistanceFieldText,
1129 switches::kEnableEncryptedMedia, 1130 switches::kEnableEncryptedMedia,
1130 switches::kEnableExperimentalCanvasFeatures, 1131 switches::kEnableExperimentalCanvasFeatures,
1131 switches::kEnableExperimentalWebPlatformFeatures, 1132 switches::kEnableExperimentalWebPlatformFeatures,
1132 switches::kEnableFastTextAutosizing, 1133 switches::kEnableFastTextAutosizing,
1133 switches::kEnableGPUClientLogging, 1134 switches::kEnableGPUClientLogging,
1134 switches::kEnableGpuClientTracing, 1135 switches::kEnableGpuClientTracing,
1135 switches::kEnableGPUServiceLogging, 1136 switches::kEnableGPUServiceLogging,
1136 switches::kEnableHighDpiCompositingForFixedPosition, 1137 switches::kEnableHighDpiCompositingForFixedPosition,
1137 switches::kEnableLowResTiling, 1138 switches::kEnableLowResTiling,
(...skipping 1197 matching lines...) Expand 10 before | Expand all | Expand 10 after
2335 void RenderProcessHostImpl::GpuMemoryBufferAllocated( 2336 void RenderProcessHostImpl::GpuMemoryBufferAllocated(
2336 IPC::Message* reply, 2337 IPC::Message* reply,
2337 const gfx::GpuMemoryBufferHandle& handle) { 2338 const gfx::GpuMemoryBufferHandle& handle) {
2338 DCHECK_CURRENTLY_ON(BrowserThread::UI); 2339 DCHECK_CURRENTLY_ON(BrowserThread::UI);
2339 ChildProcessHostMsg_SyncAllocateGpuMemoryBuffer::WriteReplyParams(reply, 2340 ChildProcessHostMsg_SyncAllocateGpuMemoryBuffer::WriteReplyParams(reply,
2340 handle); 2341 handle);
2341 Send(reply); 2342 Send(reply);
2342 } 2343 }
2343 2344
2344 } // namespace content 2345 } // namespace content
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/chrome_restart_request.cc ('k') | content/child/runtime_features.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698