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

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

Issue 159074: CPAPI (0.11) for gears drag drop.... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 11 years, 5 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/chrome_plugin_api.h ('k') | chrome/plugin/chrome_plugin_host.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-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 #include "base/gfx/native_widget_types.h" 5 #include "base/gfx/native_widget_types.h"
6 #include "base/shared_memory.h" 6 #include "base/shared_memory.h"
7 #include "build/build_config.h" 7 #include "build/build_config.h"
8 #include "chrome/common/ipc_message_macros.h" 8 #include "chrome/common/ipc_message_macros.h"
9 #include "webkit/glue/webcursor.h" 9 #include "webkit/glue/webcursor.h"
10 10
11 #if defined(OS_POSIX) 11 #if defined(OS_POSIX)
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 std::vector<uint8> /* opaque data */, 66 std::vector<uint8> /* opaque data */,
67 std::vector<uint8> /* opaque data response */) 67 std::vector<uint8> /* opaque data response */)
68 68
69 // Used to get cookies for the given URL. The request_context is a 69 // Used to get cookies for the given URL. The request_context is a
70 // CPBrowsingContext, but is passed as int32 to avoid compilation errors. 70 // CPBrowsingContext, but is passed as int32 to avoid compilation errors.
71 IPC_SYNC_MESSAGE_CONTROL2_1(PluginProcessHostMsg_GetCookies, 71 IPC_SYNC_MESSAGE_CONTROL2_1(PluginProcessHostMsg_GetCookies,
72 int32 /* request_context */, 72 int32 /* request_context */,
73 GURL /* url */, 73 GURL /* url */,
74 std::string /* cookies */) 74 std::string /* cookies */)
75 75
76 // Used by the plugin process to verify that its renderer |process_id| has
77 // permission to access the given |files|.
78 IPC_SYNC_MESSAGE_CONTROL2_1(PluginProcessHostMsg_AccessFiles,
79 int /* process_id */,
80 std::vector<std::string> /* files */,
81 bool /* allowed */)
82
76 // Get the list of proxies to use for |url|, as a semicolon delimited list 83 // Get the list of proxies to use for |url|, as a semicolon delimited list
77 // of "<TYPE> <HOST>:<PORT>" | "DIRECT". See also ViewHostMsg_ResolveProxy 84 // of "<TYPE> <HOST>:<PORT>" | "DIRECT". See also ViewHostMsg_ResolveProxy
78 // which does the same thing. 85 // which does the same thing.
79 IPC_SYNC_MESSAGE_CONTROL1_2(PluginProcessHostMsg_ResolveProxy, 86 IPC_SYNC_MESSAGE_CONTROL1_2(PluginProcessHostMsg_ResolveProxy,
80 GURL /* url */, 87 GURL /* url */,
81 int /* network error */, 88 int /* network error */,
82 std::string /* proxy list */) 89 std::string /* proxy list */)
83 90
84 #if defined(OS_WIN) 91 #if defined(OS_WIN)
85 // Creates a child window of the given parent window on the UI thread. 92 // Creates a child window of the given parent window on the UI thread.
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
367 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate, 374 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate,
368 std::string /* script */, 375 std::string /* script */,
369 bool /* popups_allowed */, 376 bool /* popups_allowed */,
370 NPVariant_Param /* result_param */, 377 NPVariant_Param /* result_param */,
371 bool /* result */) 378 bool /* result */)
372 379
373 IPC_SYNC_MESSAGE_ROUTED1_0(NPObjectMsg_SetException, 380 IPC_SYNC_MESSAGE_ROUTED1_0(NPObjectMsg_SetException,
374 std::string /* message */) 381 std::string /* message */)
375 382
376 IPC_END_MESSAGES(NPObject) 383 IPC_END_MESSAGES(NPObject)
OLDNEW
« no previous file with comments | « chrome/common/chrome_plugin_api.h ('k') | chrome/plugin/chrome_plugin_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698