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

Unified Diff: ipc/ipc_message_utils.h

Issue 7259019: Move base/values.h into the base namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 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 | « content/renderer/v8_value_converter.h ('k') | net/base/address_list_net_log_param.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/ipc_message_utils.h
===================================================================
--- ipc/ipc_message_utils.h (revision 92173)
+++ ipc/ipc_message_utils.h (working copy)
@@ -96,12 +96,12 @@
LastIPCMsgStart // Must come last.
};
-class DictionaryValue;
class FilePath;
-class ListValue;
class NullableString16;
namespace base {
+class DictionaryValue;
+class ListValue;
class Time;
class TimeDelta;
struct FileDescriptor;
@@ -382,16 +382,16 @@
#endif // defined(OS_WIN)
template <>
-struct ParamTraits<DictionaryValue> {
- typedef DictionaryValue param_type;
+struct ParamTraits<base::DictionaryValue> {
+ typedef base::DictionaryValue param_type;
static void Write(Message* m, const param_type& p);
static bool Read(const Message* m, void** iter, param_type* r);
static void Log(const param_type& p, std::string* l);
};
template <>
-struct ParamTraits<ListValue> {
- typedef ListValue param_type;
+struct ParamTraits<base::ListValue> {
+ typedef base::ListValue param_type;
static void Write(Message* m, const param_type& p);
static bool Read(const Message* m, void** iter, param_type* r);
static void Log(const param_type& p, std::string* l);
« no previous file with comments | « content/renderer/v8_value_converter.h ('k') | net/base/address_list_net_log_param.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698