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

Side by Side Diff: content/common/plugin_messages.h

Issue 7791005: Stop using the default profile's proxy service for plugin proxy requests, and instead use the ass... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix test Created 9 years, 3 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 | « content/common/child_process_messages.h ('k') | content/common/view_messages.h » ('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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 // Multiply-included message file, hence no include guard. 5 // Multiply-included message file, hence no include guard.
6 6
7 #include "build/build_config.h" 7 #include "build/build_config.h"
8 #include "content/common/common_param_traits.h" 8 #include "content/common/common_param_traits.h"
9 #include "content/common/webkit_param_traits.h" 9 #include "content/common/webkit_param_traits.h"
10 #include "ipc/ipc_channel_handle.h" 10 #include "ipc/ipc_channel_handle.h"
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 bool /* allow_buffer_flipping */) 322 bool /* allow_buffer_flipping */)
323 323
324 IPC_SYNC_MESSAGE_ROUTED1_1(PluginHostMsg_GetWindowScriptNPObject, 324 IPC_SYNC_MESSAGE_ROUTED1_1(PluginHostMsg_GetWindowScriptNPObject,
325 int /* route id */, 325 int /* route id */,
326 bool /* success */) 326 bool /* success */)
327 327
328 IPC_SYNC_MESSAGE_ROUTED1_1(PluginHostMsg_GetPluginElement, 328 IPC_SYNC_MESSAGE_ROUTED1_1(PluginHostMsg_GetPluginElement,
329 int /* route id */, 329 int /* route id */,
330 bool /* success */) 330 bool /* success */)
331 331
332 IPC_SYNC_MESSAGE_ROUTED1_2(PluginHostMsg_ResolveProxy,
333 GURL /* url */,
334 bool /* result */,
335 std::string /* proxy list */)
336
332 IPC_MESSAGE_ROUTED3(PluginHostMsg_SetCookie, 337 IPC_MESSAGE_ROUTED3(PluginHostMsg_SetCookie,
333 GURL /* url */, 338 GURL /* url */,
334 GURL /* first_party_for_cookies */, 339 GURL /* first_party_for_cookies */,
335 std::string /* cookie */) 340 std::string /* cookie */)
336 341
337 IPC_SYNC_MESSAGE_ROUTED2_1(PluginHostMsg_GetCookies, 342 IPC_SYNC_MESSAGE_ROUTED2_1(PluginHostMsg_GetCookies,
338 GURL /* url */, 343 GURL /* url */,
339 GURL /* first_party_for_cookies */, 344 GURL /* first_party_for_cookies */,
340 std::string /* cookies */) 345 std::string /* cookies */)
341 346
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
471 IPC_SYNC_MESSAGE_ROUTED1_2(NPObjectMsg_Construct, 476 IPC_SYNC_MESSAGE_ROUTED1_2(NPObjectMsg_Construct,
472 std::vector<NPVariant_Param> /* args */, 477 std::vector<NPVariant_Param> /* args */,
473 NPVariant_Param /* result_param */, 478 NPVariant_Param /* result_param */,
474 bool /* result */) 479 bool /* result */)
475 480
476 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate, 481 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate,
477 std::string /* script */, 482 std::string /* script */,
478 bool /* popups_allowed */, 483 bool /* popups_allowed */,
479 NPVariant_Param /* result_param */, 484 NPVariant_Param /* result_param */,
480 bool /* result */) 485 bool /* result */)
OLDNEW
« no previous file with comments | « content/common/child_process_messages.h ('k') | content/common/view_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698