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

Unified Diff: chrome/common/render_messages_params.cc

Issue 6286038: Add initial code to do filename munging in the FileSystem.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/render_messages_params.cc
===================================================================
--- chrome/common/render_messages_params.cc (revision 72915)
+++ chrome/common/render_messages_params.cc (working copy)
@@ -1597,14 +1597,14 @@
l->append(")");
}
-void ParamTraits<base::FileUtilProxy::Entry>::Write(
+void ParamTraits<base::FileUtilProxyBase::Entry>::Write(
Message* m,
const param_type& p) {
WriteParam(m, p.name);
WriteParam(m, p.is_directory);
}
-bool ParamTraits<base::FileUtilProxy::Entry>::Read(
+bool ParamTraits<base::FileUtilProxyBase::Entry>::Read(
const Message* m,
void** iter,
param_type* p) {
@@ -1613,7 +1613,7 @@
ReadParam(m, iter, &p->is_directory);
}
-void ParamTraits<base::FileUtilProxy::Entry>::Log(
+void ParamTraits<base::FileUtilProxyBase::Entry>::Log(
const param_type& p,
std::string* l) {
l->append("(");

Powered by Google App Engine
This is Rietveld 408576698