Home | History | Annotate | Download | only in http

Lines Matching defs:Mode

64   // The cache mode of operation.
65 enum Mode {
66 // Normal mode just behaves like a standard web cache.
68 // Record mode caches everything for purposes of offline playback.
70 // Playback mode replays from a cache without considering any
173 // Get/Set the cache's mode.
174 void set_mode(Mode value) { mode_ = value; }
175 Mode mode() { return mode_; }
361 Mode mode_;