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

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

Issue 548153004: Unified BeginFrame scheduling (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: git cl format 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
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 1111 matching lines...) Expand 10 before | Expand all | Expand 10 after
1122 switches::kDisablePrefixedEncryptedMedia, 1122 switches::kDisablePrefixedEncryptedMedia,
1123 switches::kDisableSeccompFilterSandbox, 1123 switches::kDisableSeccompFilterSandbox,
1124 switches::kDisableSessionStorage, 1124 switches::kDisableSessionStorage,
1125 switches::kDisableSharedWorkers, 1125 switches::kDisableSharedWorkers,
1126 switches::kDisableThreadedCompositing, 1126 switches::kDisableThreadedCompositing,
1127 switches::kDisableTouchAdjustment, 1127 switches::kDisableTouchAdjustment,
1128 switches::kDisableTouchDragDrop, 1128 switches::kDisableTouchDragDrop,
1129 switches::kDisableTouchEditing, 1129 switches::kDisableTouchEditing,
1130 switches::kDisableZeroCopy, 1130 switches::kDisableZeroCopy,
1131 switches::kDomAutomationController, 1131 switches::kDomAutomationController,
1132 switches::kEnableBeginFrameScheduling,
1133 switches::kEnableBleedingEdgeRenderingFastPaths, 1132 switches::kEnableBleedingEdgeRenderingFastPaths,
1134 switches::kEnablePreferCompositingToLCDText, 1133 switches::kEnablePreferCompositingToLCDText,
1135 switches::kEnableCompositingForTransition, 1134 switches::kEnableCompositingForTransition,
1136 switches::kEnableDeferredImageDecoding, 1135 switches::kEnableDeferredImageDecoding,
1137 switches::kEnableDisplayList2dCanvas, 1136 switches::kEnableDisplayList2dCanvas,
1138 switches::kEnableDistanceFieldText, 1137 switches::kEnableDistanceFieldText,
1139 switches::kEnableEncryptedMedia, 1138 switches::kEnableEncryptedMedia,
1140 switches::kEnableExperimentalCanvasFeatures, 1139 switches::kEnableExperimentalCanvasFeatures,
1141 switches::kEnableExperimentalWebPlatformFeatures, 1140 switches::kEnableExperimentalWebPlatformFeatures,
1142 switches::kEnableGPUClientLogging, 1141 switches::kEnableGPUClientLogging,
(...skipping 1225 matching lines...) Expand 10 before | Expand all | Expand 10 after
2368 } 2367 }
2369 2368
2370 void RenderProcessHostImpl::OnDeletedGpuMemoryBuffer( 2369 void RenderProcessHostImpl::OnDeletedGpuMemoryBuffer(
2371 gfx::GpuMemoryBufferType type, 2370 gfx::GpuMemoryBufferType type,
2372 const gfx::GpuMemoryBufferId& id) { 2371 const gfx::GpuMemoryBufferId& id) {
2373 DCHECK_CURRENTLY_ON(BrowserThread::UI); 2372 DCHECK_CURRENTLY_ON(BrowserThread::UI);
2374 GpuMemoryBufferImpl::DeletedByChildProcess(type, id, GetHandle()); 2373 GpuMemoryBufferImpl::DeletedByChildProcess(type, id, GetHandle());
2375 } 2374 }
2376 2375
2377 } // namespace content 2376 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/renderer_host/display_link_mac.cc ('k') | content/browser/renderer_host/render_widget_host_view_aura.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698