diff options
author | iyengar@google.com <iyengar@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-14 05:01:07 +0000 |
---|---|---|
committer | iyengar@google.com <iyengar@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-14 05:01:07 +0000 |
commit | b7fce1fc73a61f9c14b022facae152fe9671da04 (patch) | |
tree | f34add4e52cd9fe38aa04a7672ed1e465438a7f6 /chrome/common/render_messages_internal.h | |
parent | 26580d20f65dbcb7b5f3c98c16f8eebff1ac61b0 (diff) | |
download | chromium_src-b7fce1fc73a61f9c14b022facae152fe9671da04.zip chromium_src-b7fce1fc73a61f9c14b022facae152fe9671da04.tar.gz chromium_src-b7fce1fc73a61f9c14b022facae152fe9671da04.tar.bz2 |
Removing the code which enables using the renderer dib in the browser backing
store as this hurts performance.
Bug=1314407
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@858 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/render_messages_internal.h')
-rw-r--r-- | chrome/common/render_messages_internal.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/chrome/common/render_messages_internal.h b/chrome/common/render_messages_internal.h index 738aa16..334b902 100644 --- a/chrome/common/render_messages_internal.h +++ b/chrome/common/render_messages_internal.h @@ -105,10 +105,7 @@ IPC_BEGIN_MESSAGES(View, 1) // Tells the render view that a ViewHostMsg_PaintRect message was processed. // This signals the render view that it can send another PaintRect message. - // The drop bitmap argument indicates whether the renderer should drop its - // reference on the shared section used for the dib. - IPC_MESSAGE_ROUTED1(ViewMsg_PaintRect_ACK, - bool /* drop bitmap */) + IPC_MESSAGE_ROUTED0(ViewMsg_PaintRect_ACK) // Asks the renderer to calculate the number of printed pages according to the // supplied settings. The renderer will reply with @@ -438,6 +435,7 @@ IPC_BEGIN_MESSAGES(View, 1) // passed in. IPC_MESSAGE_ROUTED1(ViewMsg_Repaint, gfx::Size /* The view size to be repainted */) + IPC_END_MESSAGES(View) |