| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/common/render_messages.h" | 5 #include "chrome/common/render_messages.h" |
| 6 | 6 |
| 7 #include "chrome/common/chrome_content_settings_client.h" |
| 8 |
| 7 namespace IPC { | 9 namespace IPC { |
| 8 | 10 |
| 9 void ParamTraits<ContentSettingsPattern>::Write( | 11 void ParamTraits<ContentSettingsPattern>::Write( |
| 10 Message* m, const ContentSettingsPattern& pattern) { | 12 Message* m, const ContentSettingsPattern& pattern) { |
| 11 pattern.WriteToMessage(m); | 13 pattern.WriteToMessage(m); |
| 12 } | 14 } |
| 13 | 15 |
| 14 bool ParamTraits<ContentSettingsPattern>::Read( | 16 bool ParamTraits<ContentSettingsPattern>::Read( |
| 15 const Message* m, PickleIterator* iter, ContentSettingsPattern* pattern) { | 17 const Message* m, PickleIterator* iter, ContentSettingsPattern* pattern) { |
| 16 return pattern->ReadFromMessage(m, iter); | 18 return pattern->ReadFromMessage(m, iter); |
| 17 } | 19 } |
| 18 | 20 |
| 19 void ParamTraits<ContentSettingsPattern>::Log( | 21 void ParamTraits<ContentSettingsPattern>::Log( |
| 20 const ContentSettingsPattern& p, std::string* l) { | 22 const ContentSettingsPattern& p, std::string* l) { |
| 23 content_settings::ChromeContentSettingsClient client; |
| 21 l->append("<ContentSettingsPattern: "); | 24 l->append("<ContentSettingsPattern: "); |
| 22 l->append(p.ToString()); | 25 l->append(p.ToString(&client)); |
| 23 l->append(">"); | 26 l->append(">"); |
| 24 } | 27 } |
| 25 | 28 |
| 26 } // namespace IPC | 29 } // namespace IPC |
| OLD | NEW |