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

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

Issue 423773002: Unified BeginFrame scheduling (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 3 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 1100 matching lines...) Expand 10 before | Expand all | Expand 10 after
1111 switches::kDisableSessionStorage, 1111 switches::kDisableSessionStorage,
1112 switches::kDisableSharedWorkers, 1112 switches::kDisableSharedWorkers,
1113 switches::kDisableThreadedCompositing, 1113 switches::kDisableThreadedCompositing,
1114 switches::kDisableTouchAdjustment, 1114 switches::kDisableTouchAdjustment,
1115 switches::kDisableTouchDragDrop, 1115 switches::kDisableTouchDragDrop,
1116 switches::kDisableTouchEditing, 1116 switches::kDisableTouchEditing,
1117 switches::kDisableZeroCopy, 1117 switches::kDisableZeroCopy,
1118 switches::kDomAutomationController, 1118 switches::kDomAutomationController,
1119 switches::kEnableAcceleratedFixedRootBackground, 1119 switches::kEnableAcceleratedFixedRootBackground,
1120 switches::kEnableAcceleratedOverflowScroll, 1120 switches::kEnableAcceleratedOverflowScroll,
1121 switches::kEnableBeginFrameScheduling,
1122 switches::kEnableBleedingEdgeRenderingFastPaths, 1121 switches::kEnableBleedingEdgeRenderingFastPaths,
1123 switches::kEnableCompositingForFixedPosition, 1122 switches::kEnableCompositingForFixedPosition,
1124 switches::kEnableCompositingForTransition, 1123 switches::kEnableCompositingForTransition,
1125 switches::kEnableDeferredImageDecoding, 1124 switches::kEnableDeferredImageDecoding,
1126 switches::kEnableDisplayList2dCanvas, 1125 switches::kEnableDisplayList2dCanvas,
1127 switches::kEnableDistanceFieldText, 1126 switches::kEnableDistanceFieldText,
1128 switches::kEnableEncryptedMedia, 1127 switches::kEnableEncryptedMedia,
1129 switches::kEnableExperimentalCanvasFeatures, 1128 switches::kEnableExperimentalCanvasFeatures,
1130 switches::kEnableExperimentalWebPlatformFeatures, 1129 switches::kEnableExperimentalWebPlatformFeatures,
1131 switches::kEnableGPUClientLogging, 1130 switches::kEnableGPUClientLogging,
(...skipping 1209 matching lines...) Expand 10 before | Expand all | Expand 10 after
2341 } 2340 }
2342 2341
2343 void RenderProcessHostImpl::OnDeletedGpuMemoryBuffer( 2342 void RenderProcessHostImpl::OnDeletedGpuMemoryBuffer(
2344 gfx::GpuMemoryBufferType type, 2343 gfx::GpuMemoryBufferType type,
2345 const gfx::GpuMemoryBufferId& id) { 2344 const gfx::GpuMemoryBufferId& id) {
2346 DCHECK_CURRENTLY_ON(BrowserThread::UI); 2345 DCHECK_CURRENTLY_ON(BrowserThread::UI);
2347 GpuMemoryBufferImpl::DeletedByChildProcess(type, id, GetHandle()); 2346 GpuMemoryBufferImpl::DeletedByChildProcess(type, id, GetHandle());
2348 } 2347 }
2349 2348
2350 } // namespace content 2349 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698