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

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

Issue 361143002: Impl thread smooth scrolling. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. 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
« no previous file with comments | « cc/trees/layer_tree_impl.cc ('k') | content/renderer/input/input_handler_proxy.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1138 matching lines...) Expand 10 before | Expand all | Expand 10 after
1149 switches::kEnableMemoryBenchmarking, 1149 switches::kEnableMemoryBenchmarking,
1150 switches::kEnableOneCopy, 1150 switches::kEnableOneCopy,
1151 switches::kEnableOverlayFullscreenVideo, 1151 switches::kEnableOverlayFullscreenVideo,
1152 switches::kEnableOverlayScrollbar, 1152 switches::kEnableOverlayScrollbar,
1153 switches::kEnableOverscrollNotifications, 1153 switches::kEnableOverscrollNotifications,
1154 switches::kEnablePinch, 1154 switches::kEnablePinch,
1155 switches::kEnablePreciseMemoryInfo, 1155 switches::kEnablePreciseMemoryInfo,
1156 switches::kEnablePreparsedJsCaching, 1156 switches::kEnablePreparsedJsCaching,
1157 switches::kEnableSeccompFilterSandbox, 1157 switches::kEnableSeccompFilterSandbox,
1158 switches::kEnableSkiaBenchmarking, 1158 switches::kEnableSkiaBenchmarking,
1159 switches::kEnableSmoothScrolling,
1159 switches::kEnableSpeechSynthesis, 1160 switches::kEnableSpeechSynthesis,
1160 switches::kEnableStatsTable, 1161 switches::kEnableStatsTable,
1161 switches::kEnableStrictSiteIsolation, 1162 switches::kEnableStrictSiteIsolation,
1162 switches::kEnableTargetedStyleRecalc, 1163 switches::kEnableTargetedStyleRecalc,
1163 switches::kEnableTouchDragDrop, 1164 switches::kEnableTouchDragDrop,
1164 switches::kEnableTouchEditing, 1165 switches::kEnableTouchEditing,
1165 switches::kEnableViewport, 1166 switches::kEnableViewport,
1166 switches::kEnableViewportMeta, 1167 switches::kEnableViewportMeta,
1167 switches::kMainFrameResizesAreOrientationChanges, 1168 switches::kMainFrameResizesAreOrientationChanges,
1168 switches::kEnableVtune, 1169 switches::kEnableVtune,
(...skipping 1202 matching lines...) Expand 10 before | Expand all | Expand 10 after
2371 void RenderProcessHostImpl::GpuMemoryBufferAllocated( 2372 void RenderProcessHostImpl::GpuMemoryBufferAllocated(
2372 IPC::Message* reply, 2373 IPC::Message* reply,
2373 const gfx::GpuMemoryBufferHandle& handle) { 2374 const gfx::GpuMemoryBufferHandle& handle) {
2374 DCHECK_CURRENTLY_ON(BrowserThread::UI); 2375 DCHECK_CURRENTLY_ON(BrowserThread::UI);
2375 ChildProcessHostMsg_SyncAllocateGpuMemoryBuffer::WriteReplyParams(reply, 2376 ChildProcessHostMsg_SyncAllocateGpuMemoryBuffer::WriteReplyParams(reply,
2376 handle); 2377 handle);
2377 Send(reply); 2378 Send(reply);
2378 } 2379 }
2379 2380
2380 } // namespace content 2381 } // namespace content
OLDNEW
« no previous file with comments | « cc/trees/layer_tree_impl.cc ('k') | content/renderer/input/input_handler_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698