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

Unified Diff: chrome/common/safe_browsing/ipc_protobuf_message_macros.h

Issue 1149113006: Move Pickle to base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 | « chrome/common/render_messages.h ('k') | chrome/common/safe_browsing/protobuf_message_param_traits.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/safe_browsing/ipc_protobuf_message_macros.h
diff --git a/chrome/common/safe_browsing/ipc_protobuf_message_macros.h b/chrome/common/safe_browsing/ipc_protobuf_message_macros.h
index 2771480caaf613445485d7b76f41ae084ea1b923..4f14c79bdf6144e83cb4614f3d2a1b8d700bd159 100644
--- a/chrome/common/safe_browsing/ipc_protobuf_message_macros.h
+++ b/chrome/common/safe_browsing/ipc_protobuf_message_macros.h
@@ -37,13 +37,14 @@
struct IPC_MESSAGE_EXPORT ParamTraits<message_name> { \
typedef message_name param_type; \
static void Write(Message* m, const param_type& p); \
- static bool Read(const Message* m, PickleIterator* iter, param_type* p); \
+ static bool Read(const Message* m, base::PickleIterator* iter, \
+ param_type* p); \
static void Log(const param_type& p, std::string* l); \
\
private: \
template <class P> \
static bool ReadParamF(const Message* m, \
- PickleIterator* iter, \
+ base::PickleIterator* iter, \
param_type* p, \
void (param_type::*setter_function)(P)); \
}; \
« no previous file with comments | « chrome/common/render_messages.h ('k') | chrome/common/safe_browsing/protobuf_message_param_traits.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698