summaryrefslogtreecommitdiffstats
path: root/chrome/common
diff options
context:
space:
mode:
authorpinkerton@chromium.org <pinkerton@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-13 19:48:08 +0000
committerpinkerton@chromium.org <pinkerton@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-13 19:48:08 +0000
commit0666aef37e02188ef4b4c8890c08c5665970d54e (patch)
treeecc6f3d21eccb33040849c37d15b28a8d65f8fa1 /chrome/common
parent0582493ed8a6aa530c16acffb2cf2bae4bfd955f (diff)
downloadchromium_src-0666aef37e02188ef4b4c8890c08c5665970d54e.zip
chromium_src-0666aef37e02188ef4b4c8890c08c5665970d54e.tar.gz
chromium_src-0666aef37e02188ef4b4c8890c08c5665970d54e.tar.bz2
Propagate intrinsic width notification over IPC in all cases (not just extensions) to the TabContentsView. Enable the zoom button on Mac to utilize it. Ensure we only send the IPC notification when the value changes, as WebCore tends to over-report that it has changed. Fix const-ness in delegate API where it's not necessary.
Review URL: http://codereview.chromium.org/115138 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15988 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r--chrome/common/render_messages_internal.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/chrome/common/render_messages_internal.h b/chrome/common/render_messages_internal.h
index c413dbf..fb94641 100644
--- a/chrome/common/render_messages_internal.h
+++ b/chrome/common/render_messages_internal.h
@@ -582,6 +582,11 @@ IPC_BEGIN_MESSAGES(View)
// processing. This is used because the renderer keeps a temporary cache of
// the widget position while these asynchronous operations are in progress.
IPC_MESSAGE_ROUTED0(ViewMsg_Move_ACK)
+
+ // Used to instruct the RenderView to send back updates to the intrinsic
+ // width.
+ IPC_MESSAGE_ROUTED0(ViewMsg_EnableIntrinsicWidthChangedMode)
+
IPC_END_MESSAGES(View)