Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2236)

Unified Diff: chrome/common/content_settings_pattern_serializer.h

Issue 1659003003: IPC::Message -> base::Pickle (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: one more mac fix Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/cast_messages.cc ('k') | chrome/common/content_settings_pattern_serializer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « chrome/common/cast_messages.cc ('k') | chrome/common/content_settings_pattern_serializer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698