From f3a1c64a4d81c412273ed567536f23c2c14813a2 Mon Sep 17 00:00:00 2001 From: "dmazzoni@chromium.org" <dmazzoni@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> Date: Tue, 12 Jul 2011 19:15:03 +0000 Subject: Move base/values.h into the base namespace. This includes a cros DEPS roll with a minor change to that code since libcros also uses base/values.h. BUG=88666 TEST=none Review URL: http://codereview.chromium.org/7259019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92208 0039d316-1c4b-4281-b951-d872f2087c98 --- ipc/ipc_message_utils.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'ipc') diff --git a/ipc/ipc_message_utils.h b/ipc/ipc_message_utils.h index 3f16ea4..7d444b5 100644 --- a/ipc/ipc_message_utils.h +++ b/ipc/ipc_message_utils.h @@ -96,12 +96,12 @@ enum IPCMessageStart { 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 @@ struct ParamTraits<MSG> { #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); -- cgit v1.1