Index: chrome/test/automation/autocomplete_edit_proxy.h |
=================================================================== |
--- chrome/test/automation/autocomplete_edit_proxy.h (revision 9103) |
+++ chrome/test/automation/autocomplete_edit_proxy.h (working copy) |
@@ -49,12 +49,10 @@ |
}; |
typedef std::vector<AutocompleteMatchData> Matches; |
-namespace IPC { |
- |
template <> |
struct ParamTraits<AutocompleteMatchData> { |
typedef AutocompleteMatchData param_type; |
- static void Write(Message* m, const param_type& p) { |
+ static void Write(IPC::Message* m, const param_type& p) { |
m->WriteString(p.provider_name); |
m->WriteInt(p.relevance); |
m->WriteBool(p.deletable); |
@@ -68,7 +66,7 @@ |
m->WriteBool(p.starred); |
} |
- static bool Read(const Message* m, void** iter, param_type* r) { |
+ static bool Read(const IPC::Message* m, void** iter, param_type* r) { |
std::string destination_url; |
if (!m->ReadString(iter, &r->provider_name) || |
!m->ReadInt(iter, &r->relevance) || |
@@ -112,7 +110,6 @@ |
l->append(L"]"); |
} |
}; |
-} // namespace IPC |
class AutocompleteEditProxy : public AutomationResourceProxy { |
public: |