HomeSort by relevance Sort by last modified time
    Searched defs:SpdyFrame (Results 1 - 2 of 2) sorted by null

  /external/chromium/net/spdy/
spdy_protocol.h 331 // All Spdy Frame types derive from this SpdyFrame class.
332 class SpdyFrame {
334 // Create a SpdyFrame for a given sized buffer.
335 explicit SpdyFrame(size_t size) : frame_(NULL), owns_buffer_(true) {
342 // Create a SpdyFrame using a pre-created buffer.
349 SpdyFrame(char* data, bool owns_buffer)
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...]
  /external/chromium_org/net/spdy/
spdy_protocol.h 368 class SpdyFrame;
369 typedef SpdyFrame SpdySerializedFrame;
374 // TODO(hkhalil): Rename this class to SpdyFrame when the existing SpdyFrame is
735 // All Spdy Frame types derive from this SpdyFrame class.
736 class SpdyFrame {
738 // Create a SpdyFrame using a pre-created buffer.
745 SpdyFrame(char* data, size_t size, bool owns_buffer)
752 ~SpdyFrame() {
772 DISALLOW_COPY_AND_ASSIGN(SpdyFrame);
    [all...]

Completed in 67 milliseconds