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

Unified Diff: chrome/common/render_messages.h

Issue 453015: Update the Pepper APIs to the latest spec for the 2D demo plugin.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/reference_builds/
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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/renderer_host/resource_message_filter.cc ('k') | chrome/common/render_messages_internal.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/render_messages.h
===================================================================
--- chrome/common/render_messages.h (revision 33478)
+++ chrome/common/render_messages.h (working copy)
@@ -413,12 +413,6 @@
#endif
};
-struct ViewMsg_OpenFileForPluginResponse_Params {
- // Note: if we end up having to add a directory handle, this should be
- // combined with the DatabaseOpenFileResponse_Params struct.
- IPC::PlatformFileForTransit file_handle;
-};
-
// Parameters to describe a rendered page.
struct ViewHostMsg_DidPrintPage_Params {
// A shared memory handle to the EMF data. This data can be quite large so a
@@ -1869,20 +1863,6 @@
};
template <>
-struct ParamTraits<ViewMsg_OpenFileForPluginResponse_Params> {
- typedef ViewMsg_OpenFileForPluginResponse_Params param_type;
- static void Write(Message* m, const param_type& p) {
- WriteParam(m, p.file_handle);
- }
- static bool Read(const Message* m, void** iter, param_type* p) {
- return ReadParam(m, iter, &p->file_handle);
- }
- static void Log(const param_type& p, std::wstring* l) {
- LogParam(p.file_handle, l);
- }
-};
-
-template <>
struct ParamTraits<appcache::Status> {
typedef appcache::Status param_type;
static void Write(Message* m, const param_type& p) {
« no previous file with comments | « chrome/browser/renderer_host/resource_message_filter.cc ('k') | chrome/common/render_messages_internal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698