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

Unified Diff: chrome/common/render_messages_params.cc

Issue 4261001: Moving Entry from base::file_util_proxy namespace to within class base::FileU... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 2 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 64690)
+++ chrome/common/render_messages_params.cc (working copy)
@@ -1873,14 +1873,14 @@
l->append(")");
}
-void ParamTraits<base::file_util_proxy::Entry>::Write(
+void ParamTraits<base::FileUtilProxy::Entry>::Write(
Message* m,
const param_type& p) {
WriteParam(m, p.name);
WriteParam(m, p.is_directory);
}
-bool ParamTraits<base::file_util_proxy::Entry>::Read(
+bool ParamTraits<base::FileUtilProxy::Entry>::Read(
const Message* m,
void** iter,
param_type* p) {
@@ -1889,7 +1889,7 @@
ReadParam(m, iter, &p->is_directory);
}
-void ParamTraits<base::file_util_proxy::Entry>::Log(
+void ParamTraits<base::FileUtilProxy::Entry>::Log(
const param_type& p,
std::string* l) {
l->append("(");

Powered by Google App Engine
This is Rietveld 408576698