| 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 9d1d184d0cd0046a5d7acb0b7e28f95eaca4e7df..be724a7d3fc33cd87dc32cda31a4383f02983fd7 100644
|
| --- a/chrome/common/content_settings_pattern_serializer.h
|
| +++ b/chrome/common/content_settings_pattern_serializer.h
|
| @@ -7,12 +7,15 @@
|
|
|
| #include "base/macros.h"
|
|
|
| +namespace base {
|
| +class PickleIterator;
|
| +}
|
| +
|
| namespace IPC {
|
| class Message;
|
| }
|
|
|
| class ContentSettingsPattern;
|
| -class PickleIterator;
|
|
|
| class ContentSettingsPatternSerializer {
|
| public:
|
| @@ -20,7 +23,8 @@ class ContentSettingsPatternSerializer {
|
| static void WriteToMessage(const ContentSettingsPattern& pattern,
|
| IPC::Message* m);
|
| // Deserializes the pattern from the IPC message.
|
| - static bool ReadFromMessage(const IPC::Message* m, PickleIterator* iter,
|
| + static bool ReadFromMessage(const IPC::Message* m,
|
| + base::PickleIterator* iter,
|
| ContentSettingsPattern* pattern);
|
|
|
| private:
|
|
|