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

Unified Diff: content/browser/renderer_host/render_widget_host_view_win.cc

Issue 8949057: Revert 115441 - Redo r113722 - Add Pass(), which implements move semantics, to scoped_ptr, scoped... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/extensions/extension_manifests_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/render_widget_host_view_win.cc
===================================================================
--- content/browser/renderer_host/render_widget_host_view_win.cc (revision 115443)
+++ content/browser/renderer_host/render_widget_host_view_win.cc (working copy)
@@ -181,7 +181,10 @@
return ::DefWindowProc(window, message, wparam, lparam);
}
-void SendToGpuProcessHost(int gpu_host_id, scoped_ptr<IPC::Message> message) {
+void SendToGpuProcessHost(int gpu_host_id, IPC::Message* m) {
+ // TODO(ajwong): Switch back to Passed() when it becomes available again.
+ scoped_ptr<IPC::Message> message(m);
+
GpuProcessHost* gpu_process_host = GpuProcessHost::FromID(gpu_host_id);
if (!gpu_process_host)
return;
@@ -2045,12 +2048,10 @@
accelerated_surface_->Initialize();
}
- scoped_ptr<IPC::Message> message(
- new AcceleratedSurfaceMsg_BuffersSwappedACK(params.route_id));
base::Closure acknowledge_task = base::Bind(
SendToGpuProcessHost,
gpu_host_id,
- base::Passed(&message));
+ new AcceleratedSurfaceMsg_BuffersSwappedACK(params.route_id));
accelerated_surface_->AsyncPresentAndAcknowledge(
params.size,
« no previous file with comments | « chrome/common/extensions/extension_manifests_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698