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

Unified Diff: ipc/ipc_message_utils.h

Issue 12163003: Add FilePath to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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
« no previous file with comments | « gpu/tools/compositor_model_bench/render_tree.h ('k') | media/base/media.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/ipc_message_utils.h
diff --git a/ipc/ipc_message_utils.h b/ipc/ipc_message_utils.h
index 73006598617b7c666df960aeefc894c20c73c125..fc72210059e2f939f0510251f3569715f4ec96f6 100644
--- a/ipc/ipc_message_utils.h
+++ b/ipc/ipc_message_utils.h
@@ -45,11 +45,11 @@
#error "Please add the noinline property for your new compiler here."
#endif
-class FilePath;
class NullableString16;
namespace base {
class DictionaryValue;
+class FilePath;
class ListValue;
class Time;
class TimeDelta;
@@ -438,8 +438,8 @@ struct IPC_EXPORT ParamTraits<base::FileDescriptor> {
#endif // defined(OS_POSIX)
template <>
-struct IPC_EXPORT ParamTraits<FilePath> {
- typedef FilePath param_type;
+struct IPC_EXPORT ParamTraits<base::FilePath> {
+ typedef base::FilePath param_type;
static void Write(Message* m, const param_type& p);
static bool Read(const Message* m, PickleIterator* iter, param_type* r);
static void Log(const param_type& p, std::string* l);
« no previous file with comments | « gpu/tools/compositor_model_bench/render_tree.h ('k') | media/base/media.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698