Home | History | Annotate | Download | only in http

Lines Matching refs:PersistOptions

32   typedef int PersistOptions;
33 static const PersistOptions PERSIST_RAW = -1; // Raw, unparsed headers.
34 static const PersistOptions PERSIST_ALL = 0; // Parsed headers.
35 static const PersistOptions PERSIST_SANS_COOKIES = 1 << 0;
36 static const PersistOptions PERSIST_SANS_CHALLENGES = 1 << 1;
37 static const PersistOptions PERSIST_SANS_HOP_BY_HOP = 1 << 2;
38 static const PersistOptions PERSIST_SANS_NON_CACHEABLE = 1 << 3;
39 static const PersistOptions PERSIST_SANS_RANGES = 1 << 4;
60 // The options argument can be a combination of PersistOptions.
61 void Persist(Pickle* pickle, PersistOptions options);