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

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

Issue 10377017: Disable the hang dialog detector when showModalDialog is running. (Closed) Base URL: svn://chrome-svn/chrome/trunk/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 1239 matching lines...) Expand 10 before | Expand all | Expand 10 after
1250 IPC_MESSAGE_ROUTED2(ViewHostMsg_ShowWidget, 1250 IPC_MESSAGE_ROUTED2(ViewHostMsg_ShowWidget,
1251 int /* route_id */, 1251 int /* route_id */,
1252 gfx::Rect /* initial_pos */) 1252 gfx::Rect /* initial_pos */)
1253 1253
1254 // Message to show a full screen widget. 1254 // Message to show a full screen widget.
1255 IPC_MESSAGE_ROUTED1(ViewHostMsg_ShowFullscreenWidget, 1255 IPC_MESSAGE_ROUTED1(ViewHostMsg_ShowFullscreenWidget,
1256 int /* route_id */) 1256 int /* route_id */)
1257 1257
1258 // This message is sent after ViewHostMsg_ShowView to cause the RenderView 1258 // This message is sent after ViewHostMsg_ShowView to cause the RenderView
1259 // to run in a modal fashion until it is closed. 1259 // to run in a modal fashion until it is closed.
1260 IPC_SYNC_MESSAGE_ROUTED0_0(ViewHostMsg_RunModal) 1260 IPC_SYNC_MESSAGE_ROUTED1_0(ViewHostMsg_RunModal,
1261 int /* opener_id */)
1261 1262
1262 // Indicates the renderer is ready in response to a ViewMsg_New or 1263 // Indicates the renderer is ready in response to a ViewMsg_New or
1263 // a ViewMsg_CreatingNew_ACK. 1264 // a ViewMsg_CreatingNew_ACK.
1264 IPC_MESSAGE_ROUTED0(ViewHostMsg_RenderViewReady) 1265 IPC_MESSAGE_ROUTED0(ViewHostMsg_RenderViewReady)
1265 1266
1266 // Indicates the renderer process is gone. This actually is sent by the 1267 // Indicates the renderer process is gone. This actually is sent by the
1267 // browser process to itself, but keeps the interface cleaner. 1268 // browser process to itself, but keeps the interface cleaner.
1268 IPC_MESSAGE_ROUTED2(ViewHostMsg_RenderViewGone, 1269 IPC_MESSAGE_ROUTED2(ViewHostMsg_RenderViewGone,
1269 int, /* this really is base::TerminationStatus */ 1270 int, /* this really is base::TerminationStatus */
1270 int /* exit_code */) 1271 int /* exit_code */)
(...skipping 749 matching lines...) Expand 10 before | Expand all | Expand 10 after
2020 int /* automation_id */) 2021 int /* automation_id */)
2021 2022
2022 // Sent to the browser when the renderer detects it is blocked on a pepper 2023 // Sent to the browser when the renderer detects it is blocked on a pepper
2023 // plugin message for too long. This is also sent when it becomes unhung 2024 // plugin message for too long. This is also sent when it becomes unhung
2024 // (according to the value of is_hung). The browser can give the user the 2025 // (according to the value of is_hung). The browser can give the user the
2025 // option of killing the plugin. 2026 // option of killing the plugin.
2026 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, 2027 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung,
2027 int /* plugin_child_id */, 2028 int /* plugin_child_id */,
2028 FilePath /* path */, 2029 FilePath /* path */,
2029 bool /* is_hung */) 2030 bool /* is_hung */)
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_view_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