diff options
author | brettw <brettw@chromium.org> | 2015-06-03 09:20:14 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-06-03 16:20:49 +0000 |
commit | a89dd42f1bea8f3e4014dd9bddcb53a196055cf2 (patch) | |
tree | 09337caf5a1c338aeaee256a66940a95463bacb5 /content/common | |
parent | 7bb158502a6775aa3d94c619de933aa0f4e00bd6 (diff) | |
download | chromium_src-a89dd42f1bea8f3e4014dd9bddcb53a196055cf2.zip chromium_src-a89dd42f1bea8f3e4014dd9bddcb53a196055cf2.tar.gz chromium_src-a89dd42f1bea8f3e4014dd9bddcb53a196055cf2.tar.bz2 |
Remove namespace using directive for base::Pickle.
All callers have been updated now.
TBR=jschuh (IPC messages)
Review URL: https://codereview.chromium.org/1156893009
Cr-Commit-Position: refs/heads/master@{#332623}
Diffstat (limited to 'content/common')
-rw-r--r-- | content/common/cc_messages.cc | 2 | ||||
-rw-r--r-- | content/common/cc_messages.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/content/common/cc_messages.cc b/content/common/cc_messages.cc index fc5aed9..e3988de 100644 --- a/content/common/cc_messages.cc +++ b/content/common/cc_messages.cc @@ -823,7 +823,7 @@ void ParamTraits<cc::DrawQuad::Resources>::Write(Message* m, } bool ParamTraits<cc::DrawQuad::Resources>::Read(const Message* m, - PickleIterator* iter, + base::PickleIterator* iter, param_type* p) { if (!ReadParam(m, iter, &p->count)) return false; diff --git a/content/common/cc_messages.h b/content/common/cc_messages.h index 70392f0..7560f80 100644 --- a/content/common/cc_messages.h +++ b/content/common/cc_messages.h @@ -122,7 +122,7 @@ template <> struct CONTENT_EXPORT ParamTraits<cc::DrawQuad::Resources> { typedef cc::DrawQuad::Resources 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); }; |