| Index: chrome/common/content_settings_pattern_serializer.h
 | 
| diff --git a/chrome/common/content_settings_pattern_serializer.h b/chrome/common/content_settings_pattern_serializer.h
 | 
| index be724a7d3fc33cd87dc32cda31a4383f02983fd7..a48591dcd10d5321371519effd353f88bbdba857 100644
 | 
| --- a/chrome/common/content_settings_pattern_serializer.h
 | 
| +++ b/chrome/common/content_settings_pattern_serializer.h
 | 
| @@ -8,22 +8,19 @@
 | 
|  #include "base/macros.h"
 | 
|  
 | 
|  namespace base {
 | 
| +class Pickle;
 | 
|  class PickleIterator;
 | 
|  }
 | 
|  
 | 
| -namespace IPC {
 | 
| -class Message;
 | 
| -}
 | 
| -
 | 
|  class ContentSettingsPattern;
 | 
|  
 | 
|  class ContentSettingsPatternSerializer {
 | 
|   public:
 | 
|    // Serializes the pattern to an IPC message.
 | 
|    static void WriteToMessage(const ContentSettingsPattern& pattern,
 | 
| -                             IPC::Message* m);
 | 
| +                             base::Pickle* m);
 | 
|    // Deserializes the pattern from the IPC message.
 | 
| -  static bool ReadFromMessage(const IPC::Message* m,
 | 
| +  static bool ReadFromMessage(const base::Pickle* m,
 | 
|                                base::PickleIterator* iter,
 | 
|                                ContentSettingsPattern* pattern);
 | 
|  
 | 
| 
 |