Home | History | Annotate | Download | only in common
      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
      3 // found in the LICENSE file.
      4 
      5 #include "chrome/common/render_messages.h"
      6 
      7 namespace IPC {
      8 
      9 void ParamTraits<ContentSettingsPattern>::Write(
     10     Message* m, const ContentSettingsPattern& pattern) {
     11   pattern.WriteToMessage(m);
     12 }
     13 
     14 bool ParamTraits<ContentSettingsPattern>::Read(
     15     const Message* m, PickleIterator* iter, ContentSettingsPattern* pattern) {
     16   return pattern->ReadFromMessage(m, iter);
     17 }
     18 
     19 void ParamTraits<ContentSettingsPattern>::Log(
     20     const ContentSettingsPattern& p, std::string* l) {
     21   l->append("<ContentSettingsPattern: ");
     22   l->append(p.ToString());
     23   l->append(">");
     24 }
     25 
     26 }  // namespace IPC
     27