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

Unified Diff: chrome/common/pepper_file_messages.cc

Issue 5828003: Move the Pepper implementation from webkit/glue/plugins/pepper_* to... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years 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/common/pepper_file_messages.h ('k') | chrome/common/pepper_plugin_registry.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/pepper_file_messages.cc
===================================================================
--- chrome/common/pepper_file_messages.cc (revision 69381)
+++ chrome/common/pepper_file_messages.cc (working copy)
@@ -9,19 +9,21 @@
namespace IPC {
-void ParamTraits<PepperDirEntry>::Write(Message* m, const param_type& p) {
+void ParamTraits<webkit::ppapi::DirEntry>::Write(Message* m,
+ const param_type& p) {
WriteParam(m, p.name);
WriteParam(m, p.is_dir);
}
-bool ParamTraits<PepperDirEntry>::Read(const Message* m,
- void** iter,
- param_type* p) {
+bool ParamTraits<webkit::ppapi::DirEntry>::Read(const Message* m,
+ void** iter,
+ param_type* p) {
return ReadParam(m, iter, &p->name) &&
ReadParam(m, iter, &p->is_dir);
}
-void ParamTraits<PepperDirEntry>::Log(const param_type& p, std::string* l) {
+void ParamTraits<webkit::ppapi::DirEntry>::Log(const param_type& p,
+ std::string* l) {
l->append("(");
LogParam(p.name, l);
l->append(", ");
« no previous file with comments | « chrome/common/pepper_file_messages.h ('k') | chrome/common/pepper_plugin_registry.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698