Searched defs:SpdyFrame (Results 1 - 1 of 1) sorted by relevance

/external/chromium/net/spdy/
H A Dspdy_protocol.h331 // All Spdy Frame types derive from this SpdyFrame class.
332 class SpdyFrame { class in namespace:spdy
334 // Create a SpdyFrame for a given sized buffer.
335 explicit SpdyFrame(size_t size) : frame_(NULL), owns_buffer_(true) { function in class:spdy::SpdyFrame
342 // Create a SpdyFrame using a pre-created buffer.
349 SpdyFrame(char* data, bool owns_buffer) function in class:spdy::SpdyFrame
355 ~SpdyFrame() {
386 // Every SpdyFrame* class has a static size() method for accessing
388 // Note: this is not the same as sizeof(SpdyFrame).
396 DISALLOW_COPY_AND_ASSIGN(SpdyFrame);
[all...]

Completed in 56 milliseconds