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

Side by Side Diff: content/common/view_messages.h

Issue 10383281: Merge 136701 - Disable the hang dialog detector when showModalDialog is running. (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1084/src/
Patch Set: Created 8 years, 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // IPC messages for page rendering. 5 // IPC messages for page rendering.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include "base/process.h" 8 #include "base/process.h"
9 #include "base/shared_memory.h" 9 #include "base/shared_memory.h"
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
(...skipping 1229 matching lines...) Expand 10 before | Expand all | Expand 10 after
1240 IPC_MESSAGE_ROUTED2(ViewHostMsg_ShowWidget, 1240 IPC_MESSAGE_ROUTED2(ViewHostMsg_ShowWidget,
1241 int /* route_id */, 1241 int /* route_id */,
1242 gfx::Rect /* initial_pos */) 1242 gfx::Rect /* initial_pos */)
1243 1243
1244 // Message to show a full screen widget. 1244 // Message to show a full screen widget.
1245 IPC_MESSAGE_ROUTED1(ViewHostMsg_ShowFullscreenWidget, 1245 IPC_MESSAGE_ROUTED1(ViewHostMsg_ShowFullscreenWidget,
1246 int /* route_id */) 1246 int /* route_id */)
1247 1247
1248 // This message is sent after ViewHostMsg_ShowView to cause the RenderView 1248 // This message is sent after ViewHostMsg_ShowView to cause the RenderView
1249 // to run in a modal fashion until it is closed. 1249 // to run in a modal fashion until it is closed.
1250 IPC_SYNC_MESSAGE_ROUTED0_0(ViewHostMsg_RunModal) 1250 IPC_SYNC_MESSAGE_ROUTED1_0(ViewHostMsg_RunModal,
1251 int /* opener_id */)
1251 1252
1252 // Indicates the renderer is ready in response to a ViewMsg_New or 1253 // Indicates the renderer is ready in response to a ViewMsg_New or
1253 // a ViewMsg_CreatingNew_ACK. 1254 // a ViewMsg_CreatingNew_ACK.
1254 IPC_MESSAGE_ROUTED0(ViewHostMsg_RenderViewReady) 1255 IPC_MESSAGE_ROUTED0(ViewHostMsg_RenderViewReady)
1255 1256
1256 // Indicates the renderer process is gone. This actually is sent by the 1257 // Indicates the renderer process is gone. This actually is sent by the
1257 // browser process to itself, but keeps the interface cleaner. 1258 // browser process to itself, but keeps the interface cleaner.
1258 IPC_MESSAGE_ROUTED2(ViewHostMsg_RenderViewGone, 1259 IPC_MESSAGE_ROUTED2(ViewHostMsg_RenderViewGone,
1259 int, /* this really is base::TerminationStatus */ 1260 int, /* this really is base::TerminationStatus */
1260 int /* exit_code */) 1261 int /* exit_code */)
(...skipping 728 matching lines...) Expand 10 before | Expand all | Expand 10 after
1989 // have a javascript send a native value (string, number, boolean) to the 1990 // have a javascript send a native value (string, number, boolean) to the
1990 // listener in Cpp. (DomAutomationController) 1991 // listener in Cpp. (DomAutomationController)
1991 IPC_MESSAGE_ROUTED2(ViewHostMsg_DomOperationResponse, 1992 IPC_MESSAGE_ROUTED2(ViewHostMsg_DomOperationResponse,
1992 std::string /* json_string */, 1993 std::string /* json_string */,
1993 int /* automation_id */) 1994 int /* automation_id */)
1994 1995
1995 // Enable or disable inverting of web content pixels, for users who prefer 1996 // Enable or disable inverting of web content pixels, for users who prefer
1996 // white-on-black. 1997 // white-on-black.
1997 IPC_MESSAGE_ROUTED1(ViewMsg_InvertWebContent, 1998 IPC_MESSAGE_ROUTED1(ViewMsg_InvertWebContent,
1998 bool /* invert */) 1999 bool /* invert */)
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_widget_host_impl.cc ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698