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

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

Issue 405011: Use an explicit boolean has_new_first_party_for_cookies instead... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Upload before checkin Created 11 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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 IPC_MESSAGE_ROUTED2(ViewHostMsg_RequestResource, 1047 IPC_MESSAGE_ROUTED2(ViewHostMsg_RequestResource,
1048 int /* request_id */, 1048 int /* request_id */,
1049 ViewHostMsg_Resource_Request) 1049 ViewHostMsg_Resource_Request)
1050 1050
1051 // Cancels a resource request with the ID given as the parameter. 1051 // Cancels a resource request with the ID given as the parameter.
1052 IPC_MESSAGE_ROUTED1(ViewHostMsg_CancelRequest, 1052 IPC_MESSAGE_ROUTED1(ViewHostMsg_CancelRequest,
1053 int /* request_id */) 1053 int /* request_id */)
1054 1054
1055 // Follows a redirect that occured for the resource request with the ID given 1055 // Follows a redirect that occured for the resource request with the ID given
1056 // as the parameter. 1056 // as the parameter.
1057 IPC_MESSAGE_ROUTED2(ViewHostMsg_FollowRedirect, 1057 IPC_MESSAGE_ROUTED3(ViewHostMsg_FollowRedirect,
1058 int /* request_id */, 1058 int /* request_id */,
1059 bool /* has_new_first_party_for_cookies */,
1059 GURL /* new_first_party_for_cookies */) 1060 GURL /* new_first_party_for_cookies */)
1060 1061
1061 // Makes a synchronous resource request via the browser. 1062 // Makes a synchronous resource request via the browser.
1062 IPC_SYNC_MESSAGE_ROUTED2_1(ViewHostMsg_SyncLoad, 1063 IPC_SYNC_MESSAGE_ROUTED2_1(ViewHostMsg_SyncLoad,
1063 int /* request_id */, 1064 int /* request_id */,
1064 ViewHostMsg_Resource_Request, 1065 ViewHostMsg_Resource_Request,
1065 SyncLoadResult) 1066 SyncLoadResult)
1066 1067
1067 // Used to set a cookie. The cookie is set asynchronously, but will be 1068 // Used to set a cookie. The cookie is set asynchronously, but will be
1068 // available to a subsequent ViewHostMsg_GetCookies request. 1069 // available to a subsequent ViewHostMsg_GetCookies request.
(...skipping 966 matching lines...) Expand 10 before | Expand all | Expand 10 after
2035 std::string /* signed public key and challenge */) 2036 std::string /* signed public key and challenge */)
2036 2037
2037 #if defined(SPELLCHECKER_IN_RENDERER) 2038 #if defined(SPELLCHECKER_IN_RENDERER)
2038 // The renderer has tried to spell check a word, but couldn't because no 2039 // The renderer has tried to spell check a word, but couldn't because no
2039 // dictionary was available to load. Request that the browser find an 2040 // dictionary was available to load. Request that the browser find an
2040 // appropriate dictionary and return it. 2041 // appropriate dictionary and return it.
2041 IPC_MESSAGE_CONTROL0(ViewHostMsg_SpellChecker_RequestDictionary) 2042 IPC_MESSAGE_CONTROL0(ViewHostMsg_SpellChecker_RequestDictionary)
2042 #endif 2043 #endif
2043 2044
2044 IPC_END_MESSAGES(ViewHost) 2045 IPC_END_MESSAGES(ViewHost)
OLDNEW
« no previous file with comments | « chrome/browser/renderer_host/safe_browsing_resource_handler.cc ('k') | chrome/common/resource_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698