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

Unified Diff: chrome/browser/renderer_host/render_widget_host.h

Issue 3037006: Let PaintAtAck send an int tag instead of the TransportDIB handle. (Closed)
Patch Set: '' Created 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/renderer_host/render_widget_host.h
diff --git a/chrome/browser/renderer_host/render_widget_host.h b/chrome/browser/renderer_host/render_widget_host.h
index c7e3cd663486a55c08fa6dd51e713d8e9a2d156f..27e50b49882acc21b59b526f802209062ca68656 100644
--- a/chrome/browser/renderer_host/render_widget_host.h
+++ b/chrome/browser/renderer_host/render_widget_host.h
@@ -222,6 +222,7 @@ class RenderWidgetHost : public IPC::Channel::Listener,
// logic that is normally invoked, and doesn't put the results into
// the backing store.
void PaintAtSize(TransportDIB::Handle dib_handle,
+ int tag,
const gfx::Size& page_size,
const gfx::Size& desired_size);
@@ -476,8 +477,7 @@ class RenderWidgetHost : public IPC::Channel::Listener,
void OnMsgRenderViewGone();
void OnMsgClose();
void OnMsgRequestMove(const gfx::Rect& pos);
- void OnMsgPaintAtSizeAck(const TransportDIB::Handle& dib_handle,
- const gfx::Size& size);
+ void OnMsgPaintAtSizeAck(int tag, const gfx::Size& size);
void OnMsgUpdateRect(const ViewHostMsg_UpdateRect_Params& params);
void OnMsgCreateVideo(const gfx::Size& size);
void OnMsgUpdateVideo(TransportDIB::Id bitmap, const gfx::Rect& bitmap_rect);
« no previous file with comments | « no previous file | chrome/browser/renderer_host/render_widget_host.cc » ('j') | chrome/common/render_messages_internal.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698