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

Side by Side Diff: chrome/common/render_messages_internal.h

Issue 2027006: Disallow display of multiple experimental.extension.popup(...) windows... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 10 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 // This header is meant to be included in multiple passes, hence no traditional 5 // This header is meant to be included in multiple passes, hence no traditional
6 // header guard. 6 // header guard.
7 // See ipc_message_macros.h for explanation of the macros and passes. 7 // See ipc_message_macros.h for explanation of the macros and passes.
8 8
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
(...skipping 1036 matching lines...) Expand 10 before | Expand all | Expand 10 after
1047 1047
1048 // Sent when the renderer is done loading a page. This corresponds to WebKit's 1048 // Sent when the renderer is done loading a page. This corresponds to WebKit's
1049 // noption of the throbber stopping. 1049 // noption of the throbber stopping.
1050 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidStopLoading) 1050 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidStopLoading)
1051 1051
1052 // Sent when the document element is available for the toplevel frame. This 1052 // Sent when the document element is available for the toplevel frame. This
1053 // happens after the page starts loading, but before all resources are 1053 // happens after the page starts loading, but before all resources are
1054 // finished. 1054 // finished.
1055 IPC_MESSAGE_ROUTED0(ViewHostMsg_DocumentAvailableInMainFrame) 1055 IPC_MESSAGE_ROUTED0(ViewHostMsg_DocumentAvailableInMainFrame)
1056 1056
1057 // Sent when after the onload handler has been invoked for the document
1058 // in the toplevel frame.
1059 IPC_MESSAGE_ROUTED0(ViewHostMsg_DocumentOnLoadCompletedInMainFrame)
1060
1057 // Sent when the renderer loads a resource from its memory cache. 1061 // Sent when the renderer loads a resource from its memory cache.
1058 // The security info is non empty if the resource was originally loaded over 1062 // The security info is non empty if the resource was originally loaded over
1059 // a secure connection. 1063 // a secure connection.
1060 // Note: May only be sent once per URL per frame per committed load. 1064 // Note: May only be sent once per URL per frame per committed load.
1061 IPC_MESSAGE_ROUTED4(ViewHostMsg_DidLoadResourceFromMemoryCache, 1065 IPC_MESSAGE_ROUTED4(ViewHostMsg_DidLoadResourceFromMemoryCache,
1062 GURL /* url */, 1066 GURL /* url */,
1063 std::string /* frame_origin */, 1067 std::string /* frame_origin */,
1064 std::string /* main_frame_origin */, 1068 std::string /* main_frame_origin */,
1065 std::string /* security info */) 1069 std::string /* security info */)
1066 1070
(...skipping 1265 matching lines...) Expand 10 before | Expand all | Expand 10 after
2332 IPC_MESSAGE_CONTROL2(ViewHostMsg_Geolocation_Resume, 2336 IPC_MESSAGE_CONTROL2(ViewHostMsg_Geolocation_Resume,
2333 int /* render_view_id */, 2337 int /* render_view_id */,
2334 int /* bridge_id */) 2338 int /* bridge_id */)
2335 2339
2336 // Send the tree of accessibility data to the browser, where it's cached 2340 // Send the tree of accessibility data to the browser, where it's cached
2337 // in order to respond to OS accessibility queries immediately. 2341 // in order to respond to OS accessibility queries immediately.
2338 IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityTree, 2342 IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityTree,
2339 webkit_glue::WebAccessibility) 2343 webkit_glue::WebAccessibility)
2340 2344
2341 IPC_END_MESSAGES(ViewHost) 2345 IPC_END_MESSAGES(ViewHost)
OLDNEW
« no previous file with comments | « chrome/common/notification_type.h ('k') | chrome/renderer/extensions/extension_process_bindings.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698