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

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

Issue 4979003: Implement web app definition parsing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix nacl64 build Created 10 years, 1 month 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 1881 matching lines...) Expand 10 before | Expand all | Expand 10 after
1892 1892
1893 IPC_SYNC_MESSAGE_ROUTED4_1(ViewHostMsg_ShowModalHTMLDialog, 1893 IPC_SYNC_MESSAGE_ROUTED4_1(ViewHostMsg_ShowModalHTMLDialog,
1894 GURL /* url */, 1894 GURL /* url */,
1895 int /* width */, 1895 int /* width */,
1896 int /* height */, 1896 int /* height */,
1897 std::string /* json_arguments */, 1897 std::string /* json_arguments */,
1898 std::string /* json_retval */) 1898 std::string /* json_retval */)
1899 1899
1900 IPC_MESSAGE_ROUTED2(ViewHostMsg_DidGetApplicationInfo, 1900 IPC_MESSAGE_ROUTED2(ViewHostMsg_DidGetApplicationInfo,
1901 int32 /* page_id */, 1901 int32 /* page_id */,
1902 webkit_glue::WebApplicationInfo) 1902 WebApplicationInfo)
1903 1903
1904 // Provides the result from running OnMsgShouldClose. |proceed| matches the 1904 // Provides the result from running OnMsgShouldClose. |proceed| matches the
1905 // return value of the the frame's shouldClose method (which includes the 1905 // return value of the the frame's shouldClose method (which includes the
1906 // onbeforeunload handler): true if the user decided to proceed with leaving 1906 // onbeforeunload handler): true if the user decided to proceed with leaving
1907 // the page. 1907 // the page.
1908 IPC_MESSAGE_ROUTED1(ViewHostMsg_ShouldClose_ACK, 1908 IPC_MESSAGE_ROUTED1(ViewHostMsg_ShouldClose_ACK,
1909 bool /* proceed */) 1909 bool /* proceed */)
1910 1910
1911 // Indicates that the current page has been closed, after a ClosePage 1911 // Indicates that the current page has been closed, after a ClosePage
1912 // message. The parameters are just echoed from the ClosePage request. 1912 // message. The parameters are just echoed from the ClosePage request.
(...skipping 1151 matching lines...) Expand 10 before | Expand all | Expand 10 after
3064 base::PlatformFileInfo, /* info */ 3064 base::PlatformFileInfo, /* info */
3065 base::PlatformFileError /* error_code */) 3065 base::PlatformFileError /* error_code */)
3066 3066
3067 // Get the directory's contents. 3067 // Get the directory's contents.
3068 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_PepperGetDirContents, 3068 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_PepperGetDirContents,
3069 FilePath /* path */, 3069 FilePath /* path */,
3070 PepperDirContents, /* contents */ 3070 PepperDirContents, /* contents */
3071 base::PlatformFileError /* error_code */) 3071 base::PlatformFileError /* error_code */)
3072 3072
3073 IPC_END_MESSAGES(ViewHost) 3073 IPC_END_MESSAGES(ViewHost)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698