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

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

Issue 294025: DevTools: Implement raw cookies access for inspector. (Closed)
Patch Set: '' 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
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 1030 matching lines...) Expand 10 before | Expand all | Expand 10 after
1041 GURL /* url */, 1041 GURL /* url */,
1042 GURL /* first_party_for_cookies */, 1042 GURL /* first_party_for_cookies */,
1043 std::string /* cookie */) 1043 std::string /* cookie */)
1044 1044
1045 // Used to get cookies for the given URL 1045 // Used to get cookies for the given URL
1046 IPC_SYNC_MESSAGE_CONTROL2_1(ViewHostMsg_GetCookies, 1046 IPC_SYNC_MESSAGE_CONTROL2_1(ViewHostMsg_GetCookies,
1047 GURL /* url */, 1047 GURL /* url */,
1048 GURL /* first_party_for_cookies */, 1048 GURL /* first_party_for_cookies */,
1049 std::string /* cookies */) 1049 std::string /* cookies */)
1050 1050
1051 // Used to get raw cookie information for the given URL
1052 IPC_SYNC_MESSAGE_CONTROL2_1(ViewHostMsg_GetRawCookies,
1053 GURL /* url */,
1054 GURL /* first_party_for_cookies */,
1055 std::vector<webkit_glue::WebCookie>
1056 /* raw_cookies */)
1057
1058 // Used to delete cookie for the given URL and name
1059 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_DeleteCookie,
1060 GURL /* url */,
1061 std::string /* cookie_name */)
1062
1051 // Used to get the list of plugins 1063 // Used to get the list of plugins
1052 IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_GetPlugins, 1064 IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_GetPlugins,
1053 bool /* refresh*/, 1065 bool /* refresh*/,
1054 std::vector<WebPluginInfo> /* plugins */) 1066 std::vector<WebPluginInfo> /* plugins */)
1055 1067
1056 // Returns a path to a plugin for the given url and mime type. If there's 1068 // Returns a path to a plugin for the given url and mime type. If there's
1057 // no plugin, an empty string is returned. 1069 // no plugin, an empty string is returned.
1058 IPC_SYNC_MESSAGE_CONTROL3_2(ViewHostMsg_GetPluginPath, 1070 IPC_SYNC_MESSAGE_CONTROL3_2(ViewHostMsg_GetPluginPath,
1059 GURL /* url */, 1071 GURL /* url */,
1060 GURL /* policy_url */, 1072 GURL /* policy_url */,
(...skipping 893 matching lines...) Expand 10 before | Expand all | Expand 10 after
1954 1966
1955 // Asks the browser process to generate a keypair for grabbing a client 1967 // Asks the browser process to generate a keypair for grabbing a client
1956 // certificate from a CA (<keygen> tag), and returns the signed public 1968 // certificate from a CA (<keygen> tag), and returns the signed public
1957 // key and challenge string. 1969 // key and challenge string.
1958 IPC_SYNC_MESSAGE_CONTROL3_1(ViewHostMsg_Keygen, 1970 IPC_SYNC_MESSAGE_CONTROL3_1(ViewHostMsg_Keygen,
1959 uint32 /* key size index */, 1971 uint32 /* key size index */,
1960 std::string /* challenge string */, 1972 std::string /* challenge string */,
1961 GURL /* URL of requestor */, 1973 GURL /* URL of requestor */,
1962 std::string /* signed public key and challenge */) 1974 std::string /* signed public key and challenge */)
1963 IPC_END_MESSAGES(ViewHost) 1975 IPC_END_MESSAGES(ViewHost)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698