diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-09 20:38:38 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-09 20:38:38 +0000 |
commit | dfc21b80f87dc65b50e6f612cd47ead5b26251d1 (patch) | |
tree | 2abd44b286125f857780a6a66ae9bb3f0762e1e5 /content/common/view_messages.h | |
parent | 7a66b99fbf5cd967ba12e643fc0072fc20514990 (diff) | |
download | chromium_src-dfc21b80f87dc65b50e6f612cd47ead5b26251d1.zip chromium_src-dfc21b80f87dc65b50e6f612cd47ead5b26251d1.tar.gz chromium_src-dfc21b80f87dc65b50e6f612cd47ead5b26251d1.tar.bz2 |
Disable the hang dialog detector when showModalDialog is running.
BUG=122153
Review URL: https://chromiumcodereview.appspot.com/10377017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@136117 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common/view_messages.h')
-rw-r--r-- | content/common/view_messages.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/content/common/view_messages.h b/content/common/view_messages.h index 502360f..4b1271c 100644 --- a/content/common/view_messages.h +++ b/content/common/view_messages.h @@ -1260,7 +1260,8 @@ IPC_MESSAGE_ROUTED1(ViewHostMsg_ShowFullscreenWidget, // This message is sent after ViewHostMsg_ShowView to cause the RenderView // to run in a modal fashion until it is closed. -IPC_SYNC_MESSAGE_ROUTED0_0(ViewHostMsg_RunModal) +IPC_SYNC_MESSAGE_ROUTED1_0(ViewHostMsg_RunModal, + int /* opener_id */) // Indicates the renderer is ready in response to a ViewMsg_New or // a ViewMsg_CreatingNew_ACK. |