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

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: Better way to detect animation finished. 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 1137 matching lines...) Expand 10 before | Expand all | Expand 10 after
1148 switches::kEnableMemoryBenchmarking, 1148 switches::kEnableMemoryBenchmarking,
1149 switches::kEnableOneCopy, 1149 switches::kEnableOneCopy,
1150 switches::kEnableOverlayFullscreenVideo, 1150 switches::kEnableOverlayFullscreenVideo,
1151 switches::kEnableOverlayScrollbar, 1151 switches::kEnableOverlayScrollbar,
1152 switches::kEnableOverscrollNotifications, 1152 switches::kEnableOverscrollNotifications,
1153 switches::kEnablePinch, 1153 switches::kEnablePinch,
1154 switches::kEnablePreciseMemoryInfo, 1154 switches::kEnablePreciseMemoryInfo,
1155 switches::kEnablePreparsedJsCaching, 1155 switches::kEnablePreparsedJsCaching,
1156 switches::kEnableSeccompFilterSandbox, 1156 switches::kEnableSeccompFilterSandbox,
1157 switches::kEnableSkiaBenchmarking, 1157 switches::kEnableSkiaBenchmarking,
1158 switches::kEnableSmoothScrolling,
1158 switches::kEnableSpeechSynthesis, 1159 switches::kEnableSpeechSynthesis,
1159 switches::kEnableStatsTable, 1160 switches::kEnableStatsTable,
1160 switches::kEnableStrictSiteIsolation, 1161 switches::kEnableStrictSiteIsolation,
1161 switches::kEnableTargetedStyleRecalc, 1162 switches::kEnableTargetedStyleRecalc,
1162 switches::kEnableTouchDragDrop, 1163 switches::kEnableTouchDragDrop,
1163 switches::kEnableTouchEditing, 1164 switches::kEnableTouchEditing,
1164 switches::kEnableViewport, 1165 switches::kEnableViewport,
1165 switches::kEnableViewportMeta, 1166 switches::kEnableViewportMeta,
1166 switches::kMainFrameResizesAreOrientationChanges, 1167 switches::kMainFrameResizesAreOrientationChanges,
1167 switches::kEnableVtune, 1168 switches::kEnableVtune,
(...skipping 1192 matching lines...) Expand 10 before | Expand all | Expand 10 after
2360 void RenderProcessHostImpl::GpuMemoryBufferAllocated( 2361 void RenderProcessHostImpl::GpuMemoryBufferAllocated(
2361 IPC::Message* reply, 2362 IPC::Message* reply,
2362 const gfx::GpuMemoryBufferHandle& handle) { 2363 const gfx::GpuMemoryBufferHandle& handle) {
2363 DCHECK_CURRENTLY_ON(BrowserThread::UI); 2364 DCHECK_CURRENTLY_ON(BrowserThread::UI);
2364 ChildProcessHostMsg_SyncAllocateGpuMemoryBuffer::WriteReplyParams(reply, 2365 ChildProcessHostMsg_SyncAllocateGpuMemoryBuffer::WriteReplyParams(reply,
2365 handle); 2366 handle);
2366 Send(reply); 2367 Send(reply);
2367 } 2368 }
2368 2369
2369 } // namespace content 2370 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698