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

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

Issue 14142: Start using the proxy resolve IPC for plugins.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 10 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
« no previous file with comments | « chrome/common/plugin_messages_internal.h ('k') | chrome/plugin/plugin_thread.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 1084 matching lines...) Expand 10 before | Expand all | Expand 10 after
1095 gfx::NativeViewId /* window */, 1095 gfx::NativeViewId /* window */,
1096 gfx::Rect /* Out: Window location */) 1096 gfx::Rect /* Out: Window location */)
1097 1097
1098 // Queries the browser for suggestion for autofill in a form input field. 1098 // Queries the browser for suggestion for autofill in a form input field.
1099 IPC_MESSAGE_ROUTED4(ViewHostMsg_QueryFormFieldAutofill, 1099 IPC_MESSAGE_ROUTED4(ViewHostMsg_QueryFormFieldAutofill,
1100 std::wstring /* field name */, 1100 std::wstring /* field name */,
1101 std::wstring /* user entered text */, 1101 std::wstring /* user entered text */,
1102 int64 /* id of the text input field */, 1102 int64 /* id of the text input field */,
1103 int /* id of this message */) 1103 int /* id of this message */)
1104 1104
1105 // Get the list of proxies to use for |url|, as a semicolon delimited list
1106 // of "<TYPE> <HOST>:<PORT>" | "DIRECT". See also
1107 // PluginProcessHostMsg_ResolveProxy which does the same thing.
1108 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_ResolveProxy,
1109 GURL /* url */,
1110 int /* network error */,
1111 std::string /* proxy list */)
1112
1105 IPC_END_MESSAGES(ViewHost) 1113 IPC_END_MESSAGES(ViewHost)
OLDNEW
« no previous file with comments | « chrome/common/plugin_messages_internal.h ('k') | chrome/plugin/plugin_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698